Version 1.0.1
This commit is contained in:
29
WheresMyMoney.Maui/AppShell.xaml
Normal file
29
WheresMyMoney.Maui/AppShell.xaml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<Shell
|
||||
x:Class="WheresMyMoney.Maui.AppShell"
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:local="clr-namespace:WheresMyMoney.Maui"
|
||||
Shell.FlyoutBehavior="Disabled"
|
||||
Title="WheresMyMoney.Maui">
|
||||
|
||||
<TabBar>
|
||||
<Tab Title="Środki" Icon="{FontImageSource Glyph=, FontFamily=FontAwesome, Size=32, Color={AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource PrimaryDark}} }">
|
||||
<ShellContent Title="Środki"
|
||||
ContentTemplate="{DataTemplate local:BalancePage}"
|
||||
Route="BalancePage" />
|
||||
</Tab>
|
||||
<Tab Title="Płatności" Icon="{FontImageSource Glyph=, FontFamily=FontAwesome, Size=32, Color={AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource PrimaryDark}} }">
|
||||
<ShellContent Title="Płatności"
|
||||
ContentTemplate="{DataTemplate local:PlannedPaymentsPage}"
|
||||
Route="PlannedPaymentsPage" />
|
||||
</Tab>
|
||||
<Tab Title="Historia" Icon="{FontImageSource Glyph=, FontFamily=FontAwesome, Size=32, Color={AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource PrimaryDark}} }">
|
||||
<ShellContent Title="Historia"
|
||||
ContentTemplate="{DataTemplate local:BalanceHistoryPage}"
|
||||
Route="BalanceHistoryPage" />
|
||||
</Tab>
|
||||
</TabBar>
|
||||
|
||||
</Shell>
|
||||
Reference in New Issue
Block a user