Skip to content

Instantly share code, notes, and snippets.

@nuitsjp
Last active August 21, 2016 05:47
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 nuitsjp/da59af10627330f44e5b17cec4c427c0 to your computer and use it in GitHub Desktop.
Save nuitsjp/da59af10627330f44e5b17cec4c427c0 to your computer and use it in GitHub Desktop.
NavigationService Overview MainPage2.xaml
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:prism="clr-namespace:Prism.Mvvm;assembly=Prism.Forms"
prism:ViewModelLocator.AutowireViewModel="True"
x:Class="NavigationService.Views.MainPage"
Title="MainPage">
<StackLayout HorizontalOptions="Center" VerticalOptions="Center">
<Label Text="{Binding Title}" />
<Button Text="Navigate Second Page." Command="{Binding NavigateSecondCommand}"/>
</StackLayout>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment