You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.4 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="ex_GlyphsFont.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ex_GlyphsFont"
Shell.FlyoutBehavior="Flyout"
Shell.FlyoutWidth="120"
FlyoutBackgroundColor="WhiteSmoke"
Title="ex_GlyphsFont">
<ShellContent
Title="Home"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage">
<ShellContent.Icon>
<FontImageSource Glyph="{StaticResource ion-home}"
FontFamily="Ionicons"
Color="DarkSalmon"/>
</ShellContent.Icon>
</ShellContent>
<ShellContent
Title="Nature"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage">
<ShellContent.Icon>
<FontImageSource Glyph="{StaticResource ion-leaf}"
FontFamily="Ionicons"
Color="SeaGreen"/>
</ShellContent.Icon>
</ShellContent>
<ShellContent
Title="Sport"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage">
<ShellContent.Icon>
<FontImageSource Glyph="{StaticResource ion-ios-tennisball-outline}"
FontFamily="Ionicons"
Color="Red"/>
</ShellContent.Icon>
</ShellContent>
</Shell>