26 lines
919 B
XML
26 lines
919 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Shell
|
|
x:Class="Blahblah.FlowerApp.AppShell"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:l="clr-namespace:Blahblah.FlowerApp"
|
|
Shell.FlyoutBehavior="Disabled"
|
|
Title="Flower Story">
|
|
|
|
<TabBar>
|
|
<Tab Title="{l:Lang home, Default=Garden}"
|
|
Route="Garden" Icon="flower_tulip.png">
|
|
<ShellContent ContentTemplate="{DataTemplate l:HomePage}"/>
|
|
</Tab>
|
|
<Tab Title="{l:Lang squarePage, Default=Square}"
|
|
Route="User" Icon="cube.png">
|
|
<ShellContent ContentTemplate="{DataTemplate l:SquarePage}"/>
|
|
</Tab>
|
|
<Tab Title="{l:Lang userPage, Default=Profile}"
|
|
Route="User" Icon="user.png">
|
|
<ShellContent ContentTemplate="{DataTemplate l:UserPage}"/>
|
|
</Tab>
|
|
</TabBar>
|
|
|
|
</Shell>
|