-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppShell.xaml
More file actions
29 lines (27 loc) · 966 Bytes
/
Copy pathAppShell.xaml
File metadata and controls
29 lines (27 loc) · 966 Bytes
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
26
27
28
29
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="ProfanityShock.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ProfanityShock"
Shell.FlyoutBehavior="Flyout"
Title="ProfanityShock"
BackgroundColor="{StaticResource Gray600}"
FlyoutBackgroundColor="{StaticResource Gray600}">
<ShellContent
Title="Voice Recognition"
ContentTemplate="{DataTemplate local:LiveView}"
Route="LiveView" />
<ShellContent
Title="Shockers"
ContentTemplate="{DataTemplate local:ShockerPage}"
Route="ShockerPage" />
<ShellContent
Title="Custom Word List"
ContentTemplate="{DataTemplate local:CustomListPage}"
Route="CustomListPage" />
<ShellContent
Title="Account"
ContentTemplate="{DataTemplate local:LoginPage}"
Route="LoginPage" />
</Shell>