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.
PocketBook/Sources/BookApp/AppShell.xaml

31 lines
1.1 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:Tous}" Route="TousPage"/>
</Tab>
<Tab Title="My Readings"
Icon="bookmark_fill.svg">
<ShellContent ContentTemplate="{DataTemplate pages:EmpruntsPrets}" Route="EmpruntsPretsPage"/>
</Tab>
<Tab Title="Search"
Icon="magnifyingglass.svg">
<ShellContent ContentTemplate="{DataTemplate pages:Filtrage}" Route="FiltragePage"/>
</Tab>
</TabBar>
</Shell>