30 lines
1.7 KiB
XML
30 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Shell
|
|
x:Class="WorkFlowCheck.MAUI.AppShell"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:WorkFlowCheck.MAUI"
|
|
xmlns:security="clr-namespace:WorkFlowCheck.MAUI.Pages.Security"
|
|
xmlns:nfc="clr-namespace:WorkFlowCheck.MAUI.Pages.NFC"
|
|
xmlns:system="clr-namespace:WorkFlowCheck.MAUI.Pages.System"
|
|
xmlns:base="clr-namespace:WorkFlowCheck.MAUI.Pages.BaseStock"
|
|
xmlns:checklist="clr-namespace:WorkFlowCheck.MAUI.Pages.CheckList"
|
|
Shell.FlyoutBehavior="Disabled"
|
|
Title="WorkFlowCheck.MAUI">
|
|
|
|
<ShellContent Title="Home" ContentTemplate="{DataTemplate local:MainPage}" Route="MainPage" />
|
|
<ShellContent Title="Login" ContentTemplate="{DataTemplate security:LoginPage}" Route="LoginPage" />
|
|
<ShellContent Title="NFC Test" ContentTemplate="{DataTemplate nfc:NFCTestPage}" Route="NFCTestPage" />
|
|
<ShellContent Title="Sync data" ContentTemplate="{DataTemplate system:SyncPage}" Route="SyncPage" />
|
|
<ShellContent Title="Download APK" ContentTemplate="{DataTemplate system:DownloadAPKPage}" Route="DownloadAPKPage" />
|
|
|
|
<ShellContent Title="Base" ContentTemplate="{DataTemplate base:BaseStockPage}" Route="BaseStockPage" />
|
|
<ShellContent Title="Checkpoints" ContentTemplate="{DataTemplate base:CheckPointsPage}" Route="CheckPointsPage" />
|
|
<ShellContent Title="Equipments" ContentTemplate="{DataTemplate base:EquipmentsPage}" Route="EquipmentsPage" />
|
|
<ShellContent Title="Locations" ContentTemplate="{DataTemplate base:LocationsPage}" Route="LocationsPage" />
|
|
|
|
<ShellContent Title="CheckList" ContentTemplate="{DataTemplate checklist:CheckListPage}" Route="CheckListPage" />
|
|
|
|
|
|
</Shell>
|