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.
34 lines
1.2 KiB
34 lines
1.2 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Shell
|
|
x:Class="BookApp.AppShell"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:BookApp"
|
|
xmlns:pages="clr-namespace:BookApp.Pages"
|
|
Shell.FlyoutBehavior="Disabled">
|
|
|
|
|
|
<TabBar >
|
|
<Tab Title="My Library"
|
|
Icon="books_vertical_fill.svg">
|
|
<ShellContent ContentTemplate="{DataTemplate local:MainPage}" Route="Mainpage"/>
|
|
</Tab>
|
|
<Tab Title="My lists"
|
|
Icon="list_bullet.svg">
|
|
<ShellContent ContentTemplate="{DataTemplate pages:EmpruntsPrets}"/>
|
|
</Tab>
|
|
<Tab Title="My Readings"
|
|
Icon="bookmark_fill.svg">
|
|
<ShellContent ContentTemplate="{DataTemplate pages:Tous}" />
|
|
</Tab>
|
|
<Tab Title="Search"
|
|
Icon="magnifyingglass.svg">
|
|
<ShellContent ContentTemplate="{DataTemplate pages:Filtrage}" />
|
|
</Tab>
|
|
</TabBar>
|
|
|
|
<ShellContent Route="FiltragePage" ContentTemplate="{DataTemplate pages:Filtrage}" />
|
|
<ShellContent Route="TousPage" ContentTemplate="{DataTemplate pages:Tous}" />
|
|
|
|
</Shell>
|