I am working on Xamarin forms, it seems I need to adjust the FontSize for text in each tabs when I have to include a number of tabs for TabbedPage.
Problem: How to adjust the fontsize for the Tabs?
I tried to use the properties of the tab, but there is none.
public Product()
{
InitializeComponent();
this.title = ??
}
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local ="clr-namespace:MyApp.View"
BackgroundColor="White"
Title="Product and Service"
x:Class="MayApp.View.MainMenu">
<ContentPage.ToolbarItems>
<ToolbarItem Name="MenuItem1" Order="Primary" Icon="itemIcon1" Command="{Binding Item1Command}" Priority="0" />
<ToolbarItem Name="MenuItem2" Order="Primary" Icon="itemIcon2" Priority="1" />
</ContentPage.ToolbarItems>
<local:Product>
</local:Product>
<local:Service>
</local:Service>
</TabbedPage>