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
46 lines
1.4 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Shell
|
|
x:Class="ShoopNCook.AppShell"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:ShoopNCook"
|
|
xmlns:views="clr-namespace:ShoopNCook.Views"
|
|
Shell.FlyoutBehavior="Disabled"
|
|
Shell.NavBarIsVisible="False">
|
|
|
|
<TabBar>
|
|
<ShellContent
|
|
Title="Login Page"
|
|
ContentTemplate="{DataTemplate views:LoginPage}"
|
|
Route="Login" />
|
|
<ShellContent
|
|
Title="changePassword"
|
|
ContentTemplate="{DataTemplate views:changePassword}"
|
|
Route="ChangePassword" />
|
|
|
|
<ShellContent
|
|
Title="Profile Page"
|
|
ContentTemplate="{DataTemplate views:ProfilePage}"
|
|
Route="Profile" />
|
|
|
|
<ShellContent
|
|
Title="Search Page"
|
|
ContentTemplate="{DataTemplate views:SearchPage}"
|
|
Route="Search" />
|
|
|
|
<ShellContent
|
|
Title="Register Page"
|
|
ContentTemplate="{DataTemplate views:RegisterPage}"
|
|
Route="Register" />
|
|
|
|
<ShellContent
|
|
Title="Recipe Page"
|
|
ContentTemplate="{DataTemplate views:RecipePage}"
|
|
Route="Recipe" />
|
|
|
|
<ShellContent
|
|
Title="Favorites Page"
|
|
ContentTemplate="{DataTemplate views:FavoritesPage}"
|
|
Route="Favorites" />
|
|
</TabBar>
|
|
</Shell> |