Initial commit
This commit is contained in:
26
Jugenddienst Stunden/AppShell.xaml
Normal file
26
Jugenddienst Stunden/AppShell.xaml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<Shell
|
||||
x:Class="Jugenddienst_Stunden.AppShell"
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:views="clr-namespace:Jugenddienst_Stunden.Views"
|
||||
Shell.FlyoutBehavior="Disabled">
|
||||
|
||||
<TabBar>
|
||||
<ShellContent
|
||||
Title="Notes"
|
||||
ContentTemplate="{DataTemplate views:AllNotesPage}"
|
||||
Icon="{OnPlatform 'icon_notes.png', iOS='icon_notes_ios.png', MacCatalyst='icon_notes_ios.png'}" />
|
||||
|
||||
<ShellContent
|
||||
Title="Stunden"
|
||||
ContentTemplate="{DataTemplate views:StundenPage}"
|
||||
Icon="{OnPlatform 'icon_about.png', iOS='icon_about_ios.png', MacCatalyst='icon_about_ios.png'}" />
|
||||
|
||||
<ShellContent
|
||||
Title="About"
|
||||
ContentTemplate="{DataTemplate views:AboutPage}"
|
||||
Icon="{OnPlatform 'icon_about.png', iOS='icon_about_ios.png', MacCatalyst='icon_about_ios.png'}" />
|
||||
</TabBar>
|
||||
|
||||
</Shell>
|
||||
Reference in New Issue
Block a user