I'm developing a Android Apllication with Xamarin Forms. Page files are created in XAML. But Title Font properties changes are not available. My code is:
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MasterDetailPageNavigation.ContactsPage"
Title="Home"
BackgroundColor="#ff6600">
<ContentPage.Content>
<StackLayout Padding="110,190,100,80">
<Button BackgroundColor="Transparent" TextColor="White" Image="Button.png"/>
<StackLayout Padding="25">
<Label Text="Button" TextColor="#ffffff" FontSize="Small"></Label>
</StackLayout>
</StackLayout>
</ContentPage.Content>
How to change Title Fontstyle ?