I have the following form created using Xamarin Forms. I drew a red rectangle to highlight the problem area. I need a blue color in the title so that it is a different color and shows the name.

This is what I'm trying to bring closer. Please ignore the back arrow and the fact that the hamburger menu is on the right (by the way, maybe MasterDetail has a hamburger on the right and left?).

The following code is used to create this code. I embed my MainPage (which has a ListView) in the NavigationPage. Then I set the Detail of MasterDetailPage page to the aforementioned NavigationPage. Setting the BackgroundColor property here does not work. Note that the Title property also does not work.
How to change the color and title of the title bar background?
var navPage = new NavigationPage(new MainPage()); App.Current.MainPage = new MasterDetailPage { BackgroundColor = Color.FromHex("#174873"), Title = "MY DRIVES", Master = new MenuPage() { Title = "Master Page Title" }, Detail = navPage };
source share