Hi,
with respect to "Title" of child of a Tabbed Page:
If I do not put the title as seen in the following xaml, It looks like this
I want align all the items, included the selected.
My XAML:
Image 1:
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="#" xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core" xmlns:local="clr-namespace:#" android:TabbedPage.ToolbarPlacement="Bottom"> <TabbedPage.Children> <ContentPage IconImageSource="home.png" Title="A" /> <ContentPage IconImageSource="turist.png" /> <ContentPage IconImageSource="map.png" /> </TabbedPage.Children> </TabbedPage>
Image 2:
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="#" xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core" xmlns:local="clr-namespace:#" android:TabbedPage.ToolbarPlacement="Bottom"> <TabbedPage.Children> <ContentPage IconImageSource="home.png" /> <ContentPage IconImageSource="turist.png" /> <ContentPage IconImageSource="map.png" /> </TabbedPage.Children> </TabbedPage>
It can?