89 questions
0
votes
0
answers
14
views
Blazor Hybrid Azure B2C Login Setup (MSAL) for iOS
I set up the same for Android and that works fine. I didn't find a specific example for iOS, from different articles and with copilot my setup looks like this:
I added to the info.plist the following ...
0
votes
1
answer
30
views
Using Azure AD B2C in MAUI Blazor Hybrid
I'm developing a MAUI Blazor Hybrid app where I'm using Azure B2C.
It works fine for Android/Web but when I try to do that for iOS with a remote mac paired through simulator, first I got this error:
...
0
votes
0
answers
7
views
How can I center a Blazor Hybrid app running on Windows
I have added the possibility of a customer of my Blazor Hybrid app to adjust the size of the window when running on Windows.
To achieve this I made a WindowService class
public class WindowService
{
...
0
votes
0
answers
52
views
Published Blazor Hybrid project missing staticwebassets.runtime.json
I published a blazor hybrid on WPF project (.net 9.0, created by following this instruction https://learn.microsoft.com/en-us/aspnet/core/blazor/hybrid/tutorials/wpf?view=aspnetcore-9.0), but there is ...
0
votes
1
answer
194
views
dotnet 8 maui ios NullabilityInfoContext Not Supported
I have a dotnet 8 Maui Blazor Hybrid application that I am trying to deploy to an iPad.
The application runs fine on Windows and iOS in Debug mode and through visual studio 2022.
I can deploy the app ...
2
votes
1
answer
432
views
MAUI Blazor Hybrid not loading simple startup template for Windows
I am trying to setup a brand new project using Visual Studio 2022, using template for MAUI Blazor Hybrid App with web app.
It creates 3 projects in a solution:
A web project (server side rendering)
A ...
0
votes
0
answers
154
views
Authenticating Blazor Hybrid App on a Blazor Web App
I am looking to develop a Blazor hybrid application that would work on android and windows and also a Blazor Web application to serve as a server for the hybrid application. I was looking for the best ...
0
votes
1
answer
311
views
How to show Google Maps Navigation with .NET MAUI Blazor Hybrid
I'm currently implementing a logistics app and I integrated Google Maps there. Now I need to show the Google Map Navigation within the app.
I have added a new page called Navigation.razor and using it ...
0
votes
2
answers
88
views
In Blazor StateHasChanged Used in a Delegate method Only Updates The Component Sometimes
I am running a longish process and have a simple text to update the status on the page for each step of the process (i.e. "Step 1 of 7: Downloading data"). I'm using async methods and have ...
1
vote
1
answer
43
views
Blazor components folder issue
I am working on a Blazor hybrid project and have a component called ArraySelector.
If I place the component in a subdirectory BaseComponents as shown below
And set
The @onclick event is not ...
0
votes
1
answer
108
views
Blazor Hybrid WPF - Serving up Dynamic Images
I am writing a WPF application using Blazor Hybrid. I'm turning a Web App written in asp.net core into a local-only app.
My web app had some images which it would generate on the fly in a Controller. ...
0
votes
0
answers
89
views
MessageBox.Show causes Blazor Hybrid app to crash after seconds
Problem
A WPF Blazor Hybrid app that opens a message box using System.Windows.Forms.MessageBox.Show
crashes after a couple of seconds. Same happens when opening a modal form.
It crashes only when ...
0
votes
1
answer
37
views
When Dependancy Injection goes rouge in blazor
I have a blazor project that has a sperate Webapp UI and a mobile app UI utilising blazor hybrid principals, they share multiple components that display some data and allow actions to be performed on ...
0
votes
0
answers
909
views
How to Use Appium and Playwright to do UI Tests for .NET MAUI Blazor Hybrid Apps
I am trying to do UI Automation for .NET MAUI Blazor Hybrid apps. For simplicity I am starting with just doing the automation on the Windows-version of my MauiBlazor app. I have found that (after ...
0
votes
1
answer
122
views
How to import some classes/structs/record to "Console App"-type projects from ".NET MAUI Blazor Hybrid App"-type projects?
I need to import some classes/structs/records from .NET MAUI Blazor Hybrid App to Console App:
Please note that:
No Blazor or .NET MAUI functionality will be accessed in the console app.
The console ...