I am using Android styles.xml to set the Status bar color (ColorPrimaryDark) but I want the status bar color to be one color (grey) in my main menu, and another color (navy) everywhere else. How do I achieve this for both Android and iOS?
This will change it for android.
Add following code in your mainactivity on android Window.SetStatusBarColor(Android.Graphics.Color.Black);
Replace Black with your desired color.
Answers
This will change it for android.
Add following code in your mainactivity on android
Window.SetStatusBarColor(Android.Graphics.Color.Black);
Replace Black with your desired color.