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.
33 lines
990 B
33 lines
990 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Shell
|
|
x:Class="FlyoutTabSearch.AppShell"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:FlyoutTabSearch.Pages">
|
|
|
|
|
|
|
|
<!--Flyout-->
|
|
<Shell.FlyoutIcon>moon.png</Shell.FlyoutIcon>
|
|
<Shell.FlyoutHeader>
|
|
<Grid HeightRequest="100" BackgroundColor="DarkSlateBlue">
|
|
<Image Source="moon.png"/>
|
|
</Grid>
|
|
</Shell.FlyoutHeader>
|
|
|
|
<FlyoutItem Title="Moon Phase" Icon="moon.png">
|
|
<ShellContent
|
|
ContentTemplate="{DataTemplate local:MoonPhasePage}" />
|
|
</FlyoutItem>
|
|
|
|
<FlyoutItem Title="Sunrise" Icon="sun.png">
|
|
<ShellContent
|
|
ContentTemplate="{DataTemplate local:SunrisePage}"/>
|
|
</FlyoutItem>
|
|
|
|
<FlyoutItem Title="About" Icon="question.png">
|
|
<ShellContent
|
|
ContentTemplate="{DataTemplate local:AboutPage}"/>
|
|
</FlyoutItem>
|
|
|
|
</Shell>
|
|
|