Возможно .
Android:
Использование Window.SetStatusBarColor
и Window.SetNavigationBarColor
может легко сделать это выше Android API 21.
if (Build.VERSION.SdkInt >= Build.VERSION_CODES.Lollipop)
{
Window.SetStatusBarColor(Android.Graphics.Color.Orange);
Window.SetNavigationBarColor(Android.Graphics.Color.Orange);
}
![enter image description here](https://i.stack.imgur.com/9swc9.gif)
IOS:
В ios измените панель навигации и строку состояния, можно использовать как ниже:
NavigationController.NavigationBar.BarTintColor = UIColor.YouWantColor;
// Color you want, such as UIColor.Green
![enter image description here](https://i.stack.imgur.com/o3RgS.png)
После нажатия кнопки динамически меняется на зеленый цвет.
![enter image description here](https://i.stack.imgur.com/qlddT.png)