2021-08-02 21:49:48 +00:00
|
|
|
<?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>
|
2022-09-30 17:06:31 +00:00
|
|
|
<views:WelcomePage />
|
2021-08-02 21:49:48 +00:00
|
|
|
</x:Arguments>
|
|
|
|
</NavigationPage>
|
|
|
|
</FlyoutPage.Detail>
|
|
|
|
</FlyoutPage>
|