maui-linux/Xamarin.Forms.Sandbox/ShellPage.xaml

31 строка
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<Shell xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Xamarin.Forms.Sandbox.ShellPage"
xmlns:ios="clr-namespace:Xamarin.Forms.PlatformConfiguration.iOSSpecific;assembly=Xamarin.Forms.Core"
ios:Page.UseSafeArea="true">
<!--<Shell.Resources>
<StyleSheet Source="/Styles.css" />
</Shell.Resources>-->
<!--<Shell.FlyoutHeader>
<StackLayout>
<Button Text="I am a Button" />
</StackLayout>
</Shell.FlyoutHeader>-->
<FlyoutItem Title="Sandbox">
<Tab>
<ShellContent>
<ContentPage>
<!--<Shell.TitleView>
<StackLayout>
<Button Text="I am a Button" />
</StackLayout>
</Shell.TitleView>-->
<StackLayout>
<Button Text="I am a Button" />
</StackLayout>
</ContentPage>
</ShellContent>
</Tab>
</FlyoutItem>
</Shell>