-
Notifications
You must be signed in to change notification settings - Fork 1
/
AppShell.xaml
25 lines (22 loc) · 889 Bytes
/
AppShell.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="MyCoffeeMVVMSQLite.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MyCoffeeMVVMSQLite"
xmlns:views="clr-namespace:MyCoffeeMVVMSQLite.Views">
<ShellContent
Title="Main"
ContentTemplate="{DataTemplate views:MainPage}"
Icon="iconblank.png"
Route="MainPage"
Shell.NavBarIsVisible="true" />
<!-- This is how you make new menu not sure about sub menu yet -->
<!-- If you want to comment out section of text seletect text press CRT+K and CRT+C -->
<ShellContent
Title="My Coffee Page"
ContentTemplate="{DataTemplate views:CoffeeView}"
Icon="iconblank.png"
Route="CoffeeView"
Shell.NavBarIsVisible="true" />
</Shell>