I have the following form created with Xamarin Forms. I have drawn in a red rectangle to highlight the problem area. I need the blue color in the header to be a different colo
The BarBackgroundColor is a property of the NavigationPage class:
public App() { MainPage = new NavigationPage(new Page1()) { BarBackgroundColor = Color.FromHex("#ff5300"), BarTextColor = Color.White, }; }