I am trying to change the nav BarBackgroundColor
background color on portable class library project, so how to Change the Nav Bar Color on Xamarin.Forms
The NavigationPage has a BarBackgroundColor
property which you can set.
https://developer.xamarin.com/api/type/Xamarin.Forms.NavigationPage/
var nav = new NavigationPage(new ContentPage { Title = "Page" } );
nav.BarBackgroundColor = Color.Blue;