forked from ElixorTeam/Palleto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainPage.xaml
21 lines (18 loc) · 1.01 KB
/
MainPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Pl.Mobile.Client"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
xmlns:droid="clr-namespace:CommunityToolkit.Maui.PlatformConfiguration.AndroidSpecific;assembly=CommunityToolkit.Maui"
droid:NavigationBar.Color="#f4f4f5"
droid:NavigationBar.Style="DarkContent"
x:Class="Pl.Mobile.Client.MainPage">
<ContentPage.Behaviors>
<toolkit:StatusBarBehavior StatusBarColor="#f4f4f5" StatusBarStyle="DarkContent" />
</ContentPage.Behaviors>
<BlazorWebView x:Name="blazorWebView" HostPage="wwwroot/index.html">
<BlazorWebView.RootComponents>
<RootComponent Selector="#app" ComponentType="{x:Type local:Source.App.Routes}" />
</BlazorWebView.RootComponents>
</BlazorWebView>
</ContentPage>