Search code examples
androidxamarinxamarin.formsportable-class-library

Xamarin.forms how to Change the Nav Bar Color


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


Solution

  • 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;