Hello everyone,
I want set navigation bar background color of view.
I tried this way in App.cs :
MainPage = new NavigationPage(new LoginView()) { BarBackgroundColor = Color.Green};
But it set for all pages in my app.
I want set nav bar background color (Red) for particular page like login view and after login continue with same color (Green) for all page which i already given in App.cs.
So my question is how to set nav bar background color for only login view ?
Please help me resolve this.
Thank you.