Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Last active August 1, 2018 19:02
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/3f5eb0aca3d471f05f5293be96bc0bf4 to your computer and use it in GitHub Desktop.
Save juucustodio/3f5eb0aca3d471f05f5293be96bc0bf4 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;
namespace MasterDetailDemo
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class Menu : MasterDetailPage
{
public Menu ()
{
InitializeComponent ();
Detail = new NavigationPage(new MenuDetail());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment