|
|
|
@ -0,0 +1,17 @@ |
|
|
|
|
<?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="XamarinStudy.Views.SampleNavigationPage"> |
|
|
|
|
<ContentPage.ToolbarItems> |
|
|
|
|
<ToolbarItem Text="Modal" Clicked="ToolbarItem_Modal_Clicked"/> |
|
|
|
|
<ToolbarItem Text="Non-Modal" Clicked="ToolbarItem_NonModal_Clicked"/> |
|
|
|
|
</ContentPage.ToolbarItems> |
|
|
|
|
|
|
|
|
|
<ContentPage.Content> |
|
|
|
|
<StackLayout BackgroundColor="BlanchedAlmond"> |
|
|
|
|
<Label Text="Welcome to Sample Navigation page!" |
|
|
|
|
VerticalOptions="CenterAndExpand" |
|
|
|
|
HorizontalOptions="CenterAndExpand" /> |
|
|
|
|
</StackLayout> |
|
|
|
|
</ContentPage.Content> |
|
|
|
|
</ContentPage> |