Files
SteUP_Dotnet/SteUp.Maui/MainPage.xaml
2026-02-20 15:29:32 +01:00

16 lines
685 B
XML

<?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:shared="clr-namespace:SteUp.Shared;assembly=SteUp.Shared"
x:Class="SteUp.Maui.MainPage"
SafeAreaEdges="All"
BackgroundColor="{DynamicResource PageBackgroundColor}">
<BlazorWebView x:Name="BlazorWebView" HostPage="wwwroot/index.html">
<BlazorWebView.RootComponents>
<RootComponent Selector="#app" ComponentType="{x:Type shared:Components.Routes}" />
</BlazorWebView.RootComponents>
</BlazorWebView>
</ContentPage>