Billing/Billing.Shared/MainShell.xaml
2022-03-11 22:25:31 +08:00

23 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<Shell xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Billing"
xmlns:v="clr-namespace:Billing.Views"
xmlns:r="clr-namespace:Billing.Languages"
x:Class="Billing.MainShell"
BackgroundColor="{DynamicResource WindowBackgroundColor}"
ForegroundColor="{DynamicResource PrimaryColor}"
TitleColor="{DynamicResource PrimaryColor}"
Shell.NavBarHasShadow="True">
<FlyoutItem>
<ShellContent ContentTemplate="{DataTemplate local:SplashPage}" Route="Splash"/>
</FlyoutItem>
<TabBar>
<ShellContent ContentTemplate="{DataTemplate v:AccountPage}" Route="Accounts" Title="{r:Text Accounts}" Icon="wallet.png"/>
<ShellContent ContentTemplate="{DataTemplate v:BillPage}" Route="Bills" Title="{r:Text Bills}" Icon="bill.png"/>
<ShellContent ContentTemplate="{DataTemplate v:RankPage}" Route="Ranks" Title="{r:Text Report}" Icon="rank.png"/>
<ShellContent ContentTemplate="{DataTemplate v:SettingPage}" Route="Settings" Title="{r:Text Settings}" Icon="settings.png"/>
</TabBar>
</Shell>