Web-Development-with-Blazor.../Chapter18/MauiDemo/BlazorHybridApp/MainPage.xaml

16 lines
646 B
Plaintext
Raw Permalink Normal View History

2023-02-17 15:28:17 +01:00
<?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:BlazorHybridApp"
x:Class="BlazorHybridApp.MainPage"
BackgroundColor="{DynamicResource PageBackgroundColor}">
<BlazorWebView x:Name="blazorWebView" HostPage="wwwroot/index.html">
<BlazorWebView.RootComponents>
<RootComponent Selector="#app" ComponentType="{x:Type local:Main}" />
</BlazorWebView.RootComponents>
</BlazorWebView>
</ContentPage>
2023-02-25 14:08:52 +01:00
.NET MAUI Blazor App