I can change the font color like this:
var homePage = new NavigationPage(new HomePage())
{
Title = "Home",
Icon = "ionicons_2_0_1_home_outline_25.png",
BarTextColor = Color.Gray,
};
But is there a way to change the font for the Title. I would like to change it for the iOS and Android platforms only. Hoping that someone knows of custom renderer code that can help me to do this.
You need Custom Renderer , refer to this sample
iOS
Android
There is no need in a custom renderer on iOS, you can just use the
Appearance
API:In Android you do need a renderer, however you should check against
Android.Support.V7.Widget.AppCompatTextView
and notAndroid.Widget.TextView
.Tested on Xamarin.Forms 3.4.0