This is my first time using navigation title view. The issue I have is the background of the navigation bar in Android is different from the one in iOS. I want to set the color of the background to white so it's the same for both iOS and Android. Any suggestions how to do it. I have included the code and images below
XAML code
<NavigationPage.TitleView>
<Label FontSize="25"
TextColor="Black"
VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand"
HorizontalTextAlignment="Center"
FontFamily="PatrickFont">
<Label.FormattedText>
<FormattedString>
<Span Text="Number"/>
<Span Text="Generator" TextColor="Red"/>
</FormattedString>
</Label.FormattedText>
</Label>
</NavigationPage.TitleView>
CS code
private void InfoIconCommandExecute(object obj)
{
App.Current.MainPage.Navigation.PushAsync(new InfoPage());
}