Hi
i have a requirement where Navigation pages should have different bar colors for each of the page.
i have a dashboard page and wrote following code when click on listview ltem
NavigationPage newpage= new NavigationPage(new MYInfoPage());
newpage.BarBackgroundColor. = Color.Red;
newpage.BarTextColor = Color.Green;
await Navigation.PushAsync(newpage);
But the color is not getting updated.
Please suggest on this.
regards,
Kumar