Search code examples
.netthemesstatusbar.net-maui

How to set Light Theme to .NET MAUI Application on IOS for Status Bar Text Color to be white


I am trying to set the Status Bar color on IOS to white when I want to change the background of the status bar. How would I do this?


Solution

  • you can use this code to change the Status Bar Color and the style.

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