38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<Shell
|
|
x:Class="WorkTime.Mobile.AppShell"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:pages="clr-namespace:WorkTime.Mobile.Pages"
|
|
xmlns:icons="http://www.aathifmahir.com/dotnet/2022/maui/icons"
|
|
Title="Zeiterfassung">
|
|
|
|
<Shell.Resources>
|
|
<ResourceDictionary>
|
|
<FontImageSource x:Key="CaptureIcon" Glyph="{icons:Material Schedule}" />
|
|
<FontImageSource x:Key="AnalysisIcon" Glyph="{icons:Material Schedule}" />
|
|
<FontImageSource x:Key="SettingsIcon" Glyph="{icons:Material Settings}" />
|
|
</ResourceDictionary>
|
|
</Shell.Resources>
|
|
|
|
<TabBar>
|
|
|
|
<ShellContent
|
|
Title="Erfassen"
|
|
Icon="{StaticResource CaptureIcon}"
|
|
ContentTemplate="{DataTemplate pages:CapturePage}" />
|
|
|
|
<ShellContent
|
|
Title="Auswertung"
|
|
Icon="{StaticResource AnalysisIcon}"
|
|
ContentTemplate="{DataTemplate pages:AnalysisPage}" />
|
|
|
|
<ShellContent
|
|
Title="Einstellungen"
|
|
Icon="{StaticResource SettingsIcon}"
|
|
ContentTemplate="{DataTemplate pages:SettingsPage}" />
|
|
|
|
</TabBar>
|
|
|
|
</Shell>
|