Full customizable TabbedPage control for Xamarin.Forms.
Supports Android and iOS.
In MainActivity.cs file
Stormlion.STabbedPage.Droid.Platform.Init(this);
In AppDelegate.cs file
Stormlion.STabbedPage.iOS.Platform.Init();
<?xml version="1.0" encoding="utf-8" ?>
<stab:STabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:stab="clr-namespace:Stormlion.STabbedPage;assembly=Stormlion.STabbedPage"
Title="Customizable TabbedPage"
x:Class="Test.TabbedPage1"
TabBarPosition="Top"
TopBarHeight="0"
>
<!-- Cell Template -->
<stab:STabbedPage.TabBarCellTemplate>
<DataTemplate>
<Grid BackgroundColor="White">
<Label Text="{Binding Title}"
HorizontalTextAlignment="Center"
VerticalTextAlignment="Center"
/>
</Grid>
</DataTemplate>
</stab:STabbedPage.TabBarCellTemplate>
<!-- Selected Cell Template -->
<stab:STabbedPage.TabBarSelectedCellTemplate>
<DataTemplate>
<Grid BackgroundColor="Orange">
<Label Text="{Binding Title}"
HorizontalTextAlignment="Center"
VerticalTextAlignment="Center"
TextColor="White"
/>
</Grid>
</DataTemplate>
</stab:STabbedPage.TabBarSelectedCellTemplate>
<!-- Pages -->
<ContentPage Title="Tab 1"
BackgroundColor="Yellow"
>
<ContentPage.Content>
<StackLayout>
<Label Text="Page 1"
VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand"
/>
</StackLayout>
</ContentPage.Content>
</ContentPage>
<ContentPage Title="Tab 2"
BackgroundColor="LightGreen"
>
<ContentPage.Content>
<StackLayout>
<Label Text="Page 2"
VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand"
/>
</StackLayout>
</ContentPage.Content>
</ContentPage>
<ContentPage Title="Tab 3"
BackgroundColor="LightBlue"
>
<ContentPage.Content>
<StackLayout>
<Label Text="Page 3"
VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand"
/>
</StackLayout>
</ContentPage.Content>
</ContentPage>
</stab:STabbedPage>
Contributions are welcome!