Quantcast
Channel: Xamarin.Forms — Xamarin Community Forums
Viewing all articles
Browse latest Browse all 58056

How to set Navigation Bar color on Android without highlight? I wanna to display pure color

$
0
0

I did this, but the color of navigation bar isn't what I want. I wanna to display the same color as that on iOS. What could I do?

    public class App
    {
        public static Page GetMainPage ()
        {   
            var masterPage = new MasterPage ();
            var navigationPage = new NavigationPage (masterPage){
                Tint = Color.Red,
            };

            return navigationPage;
        }
    }

Viewing all articles
Browse latest Browse all 58056

Trending Articles