15 lines
567 B
Plaintext
15 lines
567 B
Plaintext
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<FlyoutPage xmlns="http://xamarin.com/schemas/2014/forms"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:views="clr-namespace:MobileApp1.Views"
|
||
|
x:Class="MobileApp1.Views.MainPage">
|
||
|
<FlyoutPage.Flyout>
|
||
|
<views:FlyoutMenuPage x:Name="flyoutPage" />
|
||
|
</FlyoutPage.Flyout>
|
||
|
<FlyoutPage.Detail>
|
||
|
<NavigationPage>
|
||
|
<x:Arguments>
|
||
|
<views:BlankPage />
|
||
|
</x:Arguments>
|
||
|
</NavigationPage>
|
||
|
</FlyoutPage.Detail>
|
||
|
</FlyoutPage>
|