Base mobile is working

This commit is contained in:
Michał Zieliński
2025-06-23 15:53:46 +02:00
parent c1d0c0bd94
commit 8cb3b50fe7
17 changed files with 69 additions and 428 deletions

View File

@@ -1,13 +1,14 @@
<?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:Bimix.UI.Mobile"
x:Class="Bimix.UI.Mobile.MainPage">
xmlns:shared="clr-namespace:Bimix.UI.Shared.Components;assembly=Bimix.UI.Shared"
x:Class="Bimix.UI.Mobile.MainPage"
Title="Bimix CRM">
<BlazorWebView x:Name="blazorWebView" HostPage="wwwroot/index.html">
<BlazorWebView x:Name="BlazorWebView" HostPage="wwwroot/index.html">
<BlazorWebView.RootComponents>
<RootComponent Selector="#app" ComponentType="{x:Type local:Components.Routes}" />
<RootComponent Selector="#app" ComponentType="{x:Type shared:Routes}" />
</BlazorWebView.RootComponents>
</BlazorWebView>
</ContentPage>
</ContentPage>