I have a MasterDetail page, Detail is a Naviagtion page, Master contains a Listview. I'm changing the color of the header bar background color and text using
((NavigationPage)Detail).BarBackgroundColor = Color.Navy;
((NavigationPage)Detail).BarTextColor = Color.White;
This changes the carrier bar text to white for both the Master and Detail sections, but only changes the carrier bar background on the Detail section, the Master is still white/transparent so the text is no longer visible. Is this a bug? I would expect the bar variables to work the same, to only work on the Navigation page since that is the page they are being applied to.
note- I am NOT setting the StatusBarStyle to LightContent, the status bar on a content page shows as black text on a white background.
*Edit - I would expect it to look like this - the CarrierBarText color is changes only on the Navigation Page: