【问题标题】:How to set Light Theme to .NET MAUI Application on IOS for Status Bar Text Color to be white如何在 IOS 上将 Light Theme 设置为 .NET MAUI 应用程序,使状态栏文本颜色为白色
【发布时间】:2023-02-08 00:15:54
【问题描述】:

当我想更改状态栏的背景时,我试图将 IOS 上的状态栏颜色设置为白色。我该怎么做?

【问题讨论】:

  • 这已经在 PR 中完成,您可以查看this link 了解更多详情。

标签: .net themes statusbar .net-maui


【解决方案1】:

您可以使用此代码更改状态栏颜色和样式。

<ContentPage 
...  
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit" ...>
        
        <ContentPage.Behaviors>
             <toolkit:StatusBarBehavior StatusBarColor="Yellow" StatusBarStyle="DarkContent" />
     </ContentPage.Behaviors>
...
</ContentPage>

【讨论】:

    猜你喜欢
    • 2013-09-28
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-08-31
    • 1970-01-01
    • 1970-01-01
    • 2013-11-12
    相关资源
    最近更新 更多