Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created August 10, 2018 18:29
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/cad664d1d1036e37f3502f6b6761ac5a to your computer and use it in GitHub Desktop.
Save juucustodio/cad664d1d1036e37f3502f6b6761ac5a 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
using Xamarin.Forms.Xaml;
using Naxam.Controls.Forms;
namespace TopTabbedPageDemo
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class MainTabbedPage : TopTabbedPage
{
public MainTabbedPage()
{
InitializeComponent();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment