Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created August 2, 2018 14:46
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/d31c75f9b40efb4ed3ceff97bd3114e9 to your computer and use it in GitHub Desktop.
Save juucustodio/d31c75f9b40efb4ed3ceff97bd3114e9 to your computer and use it in GitHub Desktop.
Example how to implement Master Detail menu in Xamarin.Forms Applications - http://julianocustodio.com/master-detail
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
[assembly: XamlCompilation (XamlCompilationOptions.Compile)]
namespace MasterDetailDemo
{
public partial class App : Application
{
public App ()
{
InitializeComponent();
MainPage = new Menu();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment