Started working on main page

This commit is contained in:
2025-11-12 20:12:03 +01:00
parent e0bf95060a
commit 969219137a
148 changed files with 1053 additions and 93 deletions

View File

@@ -0,0 +1,37 @@
<?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>