Androidアプリの上の青い部分(ナビゲーションバー)の背景色及びテキスト色の変更
AppクラスでNavigationPageのプロパティを変更する
public App()
{
InitializeComponent();
MainPage = new NavigationPage(new FirstPage())
{
BarBackgroundColor = Color.DarkCyan,
BarTextColor = Color.Gold
};
}