-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppShell.xaml
More file actions
19 lines (18 loc) · 997 Bytes
/
Copy pathAppShell.xaml
File metadata and controls
19 lines (18 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8" ?>
<Shell x:Class="AzureLens.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:AzureLens"
xmlns:views="clr-namespace:AzureLens.Views"
Title="AzureLens"
Shell.TabBarBackgroundColor="{DynamicResource HeaderBackground}"
Shell.TabBarForegroundColor="{DynamicResource AccentColor}"
Shell.TabBarTitleColor="{DynamicResource PrimaryText}"
Shell.TabBarUnselectedColor="{DynamicResource SecondaryText}">
<TabBar>
<ShellContent Title="Inicio" Icon="icon_home.png" Shell.NavBarIsVisible="False"
ContentTemplate="{DataTemplate local:MainPage}" Route="MainPage" />
<ShellContent Title="Ajustes" Icon="icon_settings.png" Shell.NavBarIsVisible="False"
ContentTemplate="{DataTemplate views:SettingsPage}" Route="SettingsPage" />
</TabBar>
</Shell>