Xamarin Forms - Change Colour of Navigation Bar (Page Title For Master-Detail Template)
Change All Toolbar Bar Color (Toolbar is Actually Navigation Page)
Navigation Page Title Colour can be Changed using Style Type in App.XAML
Navigation Page Appears in case of Master-Details Template Type
We need to create Global Style Type in APP.xaml
Code :
<Style TargetType="NavigationPage">
<Setter Property="BarBackgroundColor" Value="Color.LightGray"/>
</Style>
Comments
Post a Comment