Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created July 20, 2018 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juucustodio/67ef7da92072ced0516166c23b6fc200 to your computer and use it in GitHub Desktop.
Save juucustodio/67ef7da92072ced0516166c23b6fc200 to your computer and use it in GitHub Desktop.
Example of Bottom Tabs implementation in Xamarin.Forms to Android - http://julianocustodio.com/android-bottom-tabs
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="BottomTabsDemo.Home"
Title="Demo"
BarBackgroundColor="#2196F3"
BarTextColor="White"
xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core"
android:TabbedPage.ToolbarPlacement="Bottom"
android:TabbedPage.BarItemColor="#66FFFFFF"
android:TabbedPage.BarSelectedItemColor="White">
<ContentPage Title="Home" Icon="home.png"/>
<ContentPage Title="RSS" Icon="rss.png"/>
</TabbedPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment