Skip to content

Instantly share code, notes, and snippets.

@twolfprogrammer
Last active September 6, 2016 22:25
Show Gist options
  • Save twolfprogrammer/f4ec09acf6d72287bb51cb529ccebcd7 to your computer and use it in GitHub Desktop.
Save twolfprogrammer/f4ec09acf6d72287bb51cb529ccebcd7 to your computer and use it in GitHub Desktop.
Creating a hamburger menu in Xamarin.Forms
public partial class App : Application {
public NavigationPage NavigationPage { get; private set; }
public App() {
var menuPage = new MenuPage();
NavigationPage = new NavigationPage(new HomePage());
var rootPage = new RootPage();
rootPage.Master = menuPage;
rootPage.Detail = NavigationPage;
MainPage = rootPage;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment