16 lines
541 B
Plaintext
16 lines
541 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"
|
||
|
x:Class="MobileAPP.FlyoutPage1"
|
||
|
xmlns:pages="clr-namespace:MobileAPP">
|
||
|
<FlyoutPage.Flyout>
|
||
|
<pages:FlyoutPage1Flyout x:Name="FlyoutPage" />
|
||
|
</FlyoutPage.Flyout>
|
||
|
<FlyoutPage.Detail>
|
||
|
<NavigationPage>
|
||
|
<x:Arguments>
|
||
|
<pages:FlyoutPage1Detail />
|
||
|
</x:Arguments>
|
||
|
</NavigationPage>
|
||
|
</FlyoutPage.Detail>
|
||
|
</FlyoutPage>
|