Skip to content

Instantly share code, notes, and snippets.

@shmutalov
Created September 22, 2017 11:35
Show Gist options
  • Save shmutalov/5232397d5c659ebd069cd5319a1151f1 to your computer and use it in GitHub Desktop.
Save shmutalov/5232397d5c659ebd069cd5319a1151f1 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MasterDetailSample.Views.MenuPage">
<ContentPage.Padding>
<OnPlatform x:TypeArguments="Thickness">
<On Platform="iOS" Value="0, 20, 0, 0" />
</OnPlatform>
</ContentPage.Padding>
<ContentPage.Content>
<StackLayout>
<Button Text="Home"
TextColor="White"
BackgroundColor="Green"
Command="{Binding GoHomeCommand}" />
<Button Text="Second Page"
TextColor="White"
BackgroundColor="Navy"
Command="{Binding GoSecondCommand}" />
</StackLayout>
</ContentPage.Content>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment