27 lines
1.1 KiB
XML
27 lines
1.1 KiB
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:dx="http://schemas.devexpress.com/maui"
|
|
xmlns:local="clr-namespace:FruitBankHybrid"
|
|
xmlns:shared="clr-namespace:FruitBankHybrid.Shared;assembly=FruitBankHybrid.Shared"
|
|
x:Class="FruitBankHybrid.MainPage"
|
|
BackgroundColor="{DynamicResource PageBackgroundColor}">
|
|
|
|
<Grid RowDefinitions="*,Auto">
|
|
<BlazorWebView x:Name="blazorWebView"
|
|
HostPage="wwwroot/index.html">
|
|
<BlazorWebView.RootComponents>
|
|
<RootComponent Selector="#app"
|
|
ComponentType="{x:Type shared:Routes}" />
|
|
</BlazorWebView.RootComponents>
|
|
</BlazorWebView>
|
|
<!--<dx:DXButton Clicked="OnActionButtonClick"
|
|
Content="Action"
|
|
CornerRadius="0"
|
|
Grid.Row="1"
|
|
Icon="dotnet_bot.png"
|
|
IconColor="White" />-->
|
|
</Grid>
|
|
|
|
</ContentPage>
|