Finished Settings page
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user