I\'m building a Xamarin cross-platform App!
The problem is I want to change the colour of NavigationBar of MainPage which is MasterPage>
NavigationBar
MainPage
MasterPage>
The NavigationPage has a BarBackgroundColor property which you can set.
Referred this
var nav = new NavigationPage(new ContentPage { Title = "Page" } ); nav.BarBackgroundColor = Color.Blue;