Hello,
I'm facing an issue with the BarTextColor. I'm trying to change the Navigation bar design as follow :
Icons as Green color and Title as Black.
I did the trick easily in IOS with a custom renderer, but I do not find a way to do it in Android.
The implementation of my custom renderer :
private Support.Toolbar toolbar;
public override void OnViewAdded(Android.Views.View child)
{
base.OnViewAdded(child);
if (child.GetType() == typeof(Support.Toolbar))
{
toolbar = (Support.Toolbar)child;
toolbar.SetTitleTextColor(Color.Black.ToAndroid());
}
}
I set BarTextColor = Color.Green;
to my NavigationPage
Here the result in my emulator:
Any idea ?