demo-xf-app-1a/MobileApp1/Views/MainPage.xaml

15 lines
569 B
Plaintext
Raw Permalink Normal View History

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>