-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAppShell.xaml
More file actions
27 lines (25 loc) · 1.06 KB
/
AppShell.xaml
File metadata and controls
27 lines (25 loc) · 1.06 KB
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
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="EntglDb.Test.Maui.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:EntglDb.Test.Maui"
Title="EntglDb Mobile">
<TabBar>
<Tab Title="Network">
<ShellContent ContentTemplate="{DataTemplate local:NetworkPage}" Route="NetworkPage" />
</Tab>
<Tab Title="Database">
<ShellContent ContentTemplate="{DataTemplate local:DatabasePage}" Route="DatabasePage" />
</Tab>
<Tab Title="Logs">
<ShellContent ContentTemplate="{DataTemplate local:LogsPage}" Route="LogsPage" />
</Tab>
<Tab Title="Payload">
<ShellContent ContentTemplate="{DataTemplate local:PayloadExchangePage}" Route="PayloadExchangePage" />
</Tab>
<Tab Title="Telemetry">
<ShellContent ContentTemplate="{DataTemplate local:TelemetryPage}" Route="TelemetryPage" />
</Tab>
</TabBar>
</Shell>