`public class ExtendedNavigationPageRenderer : NavigationRenderer
{
protected override void OnElementChanged (VisualElementChangedEventArgs e)
{
base.OnElementChanged (e);
if (NavigationBar != null) {
this.NavigationBar.TintColor = UIColor.Gray;
this.NavigationBar.BarTintColor = UIColor.Green;
}
}
}`
The navigaiton bar doesn't get updated no matter what I do. I've verified that the code is run, as I break point it.
Any change I make to navigation bar just simply won't work.
What's going on?