Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created August 1, 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/456e6ec1bfe2644b7abfa316405ae647 to your computer and use it in GitHub Desktop.
Save juucustodio/456e6ec1bfe2644b7abfa316405ae647 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
<?xml version="1.0" encoding="utf-8" ?>
<MasterDetailPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MasterDetailDemo.Menu" Title="Master">
<MasterDetailPage.Master>
<ContentPage Title="Menu" Padding="0">
<ContentPage.Content>
<StackLayout>
</StackLayout>
</ContentPage.Content>
</ContentPage>
</MasterDetailPage.Master>
</MasterDetailPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment