I search but I can\'t find if it\'s possible to change the StatusBar color for each platform, from my portable code? (for Android, iOS & WinPhone 8.1)
Android, iOS & WinPhone 8.1
This works for me.
In the App.xaml
#AA0000 #F4721C #F4721C
Then when you want to change the colour:
if (Condition == true) App.Current.Resources["navBarColour"] = App.Current.Resources["navBarBlue"]; else App.Current.Resources["navBarColour"] = App.Current.Resources["navBarRed"];