Finished Settings page

This commit is contained in:
2025-11-12 17:06:14 +01:00
parent a608f98497
commit e0bf95060a
38 changed files with 675 additions and 34 deletions

View File

@@ -3,12 +3,35 @@
x:Class="WorkTime.Mobile.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:WorkTime.Mobile"
Title="WorkTime.Mobile">
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>
<ShellContent
Title="Home"
ContentTemplate="{DataTemplate local:MainPage}"
Route="MainPage" />
<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>