Skip to content

Instantly share code, notes, and snippets.

@nuitsjp
Created August 21, 2016 06:27
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/2dad70742866f41a8db55d8f6f680598 to your computer and use it in GitHub Desktop.
Save nuitsjp/2dad70742866f41a8db55d8f6f680598 to your computer and use it in GitHub Desktop.
NavigationService Overview SecondPage2.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.SecondPage">
<StackLayout Orientation="Vertical" HorizontalOptions="Center" VerticalOptions="Center">
<Label Text="Second Page."/>
<Button Text="Go Back." Command="{Binding GoBackCommand}"/>
</StackLayout>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment