Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Last active August 10, 2018 18:55
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/aa4bba7f617da3400ddd0a39d1b1076d to your computer and use it in GitHub Desktop.
Save juucustodio/aa4bba7f617da3400ddd0a39d1b1076d to your computer and use it in GitHub Desktop.
Example of how to implement TopTabbedPage in iOS applications using Xamarin.Forms - http://julianocustodio.com/toptabbedpage-ios
<?xml version="1.0" encoding="utf-8" ?>
<forms:TopTabbedPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:TopTabbedPageDemo"
x:Class="TopTabbedPageDemo.MainTabbedPage"
xmlns:forms="clr-namespace:Naxam.Controls.Forms;assembly=Naxam.TopTabbedPage.Forms"
BarBackgroundColor="#2196F3">
<local:Page1 Title="PAGE 1"/>
<local:Page2 Title="PAGE 2"/>
<local:Page3 Title="PAGE 3"/>
</forms:TopTabbedPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment