-
Notifications
You must be signed in to change notification settings - Fork 0
/
AppShell.xaml
25 lines (23 loc) · 864 Bytes
/
AppShell.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="MiniSpring.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MiniSpring"
Shell.FlyoutBehavior="Disabled"
Title="MiniSpring"
>
<Shell.Resources>
<Style x:Key="Stylenamehere" TargetType="Element">
<Setter Property="Shell.BackgroundColor" Value="{StaticResource SpringSilver}" />
<Setter Property="Shell.TitleColor" Value="Black" />
<Setter Property="Shell.ForegroundColor" Value="Black" />
</Style>
</Shell.Resources>
<ShellContent
Title="Login"
Style="{StaticResource Stylenamehere}"
ContentTemplate="{DataTemplate local:Views.Pages.MainPage}"
Route="MainPage"
/>
</Shell>