I want to create this kind of design for bottom tabs (change background color for selected tab of tabbed page in xamarin forms)
I want to fix the issue on android. Plz help me! Thanks.
I want to create this kind of design for bottom tabs (change background color for selected tab of tabbed page in xamarin forms)
I want to fix the issue on android. Plz help me! Thanks.
Need more clarification on the issue, if you want to move the tab bar to bottom like in iOS, below code helps you.
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="XXX.Views.TabbedPage"
xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core"
android:TabbedPage.ToolbarPlacement="Bottom"
android:TabbedPage.BarItemColor="#a39d9f"
android:TabbedPage.BarSelectedItemColor="#007aff"
android:TabbedPage.IsSwipePagingEnabled="false"
BackgroundColor="#f8f8f8"
Padding="5,0,5,0" >
</TabbedPage>