-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAppShell.xaml
More file actions
24 lines (22 loc) · 929 Bytes
/
Copy pathAppShell.xaml
File metadata and controls
24 lines (22 loc) · 929 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
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="RadialMaui.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:RadialMaui.Views"
Title="RadialMaui">
<TabBar>
<ShellContent ContentTemplate="{DataTemplate local:GCodeControllerView}"
Route="GCodeControllerView"
Title="GCode"
Icon="gcode.png"/>
<ShellContent ContentTemplate="{DataTemplate local:ImageControllerView}"
Route="ImageControllerView"
Title="Image"
Icon="image.png"/>
<ShellContent ContentTemplate="{DataTemplate local:SVGControllerView}"
Route="SVGControllerView"
Title="SVG"
Icon="svg.png" />
</TabBar>
</Shell>