Scrolling Issue on Tabbed Page in iOS When Adding Dynamic Labels
I am experiencing a scrolling issue on a tabbed page in iOS when dynamically adding labels. In most cases (approximately 8 out of 10 times), I am unable to scroll down after adding the labels. This issue occurs on both real and simulator devices. …
.NET MAUI
Dynamic NavMenu
I am trying to implement the default NavMenu.razor with a number of NavLinks where one of the items is not visible by default. It should only become visible after an authenticated user belonging to a specific role condition is true. My code snippet is…
.NET MAUI
UI freezes for sometime after UI binding
My data is binding to UI quickly but the UI freezes for few seconds and I have only 2 records. I am loading data in ContentView Loaded event var newStops = await Task.Run(() => { return response.Stops .OrderByDescending(x =>…
.NET MAUI
Can I use getManufacturerSpecificData in StartDiscovery in .net android?
how to use getManufacturerSpecificData in StartDiscovery not StartLeScan?
.NET MAUI
Unable to Authenticate MAUI Application on Android
I have a Blazor hybrid app that successfully authenticates against Azure client OpenID authentication scheme on windows but fails on android device. Is there a working example to reference specifically for Android?
.NET MAUI
How to fix this issue - Failed to marshal the Objective-C object 0x1257d5880
I am facing an issue on an iOS device. After installing the app and opening it, I encounter this error. Failed to marshal the Objective-C object 0x1257d5880 (type: Microsoft_Maui_Controls_Handlers_Items_VerticalCell). Could not find an existing managed…
.NET MAUI
How to improve tapping feedback in Maui
Hello. Please. how to improve the feedback of tap recognize on a label of one character because the tapping area is small the tapping feedback is lower. In my app I have a grid row with 10 columns and in each grid cell I have a one character label with…
.NET MAUI
Severity Code Description Project File Line Suppression State Error MSB4100 Expected "$([System.String]::Copy('%(Identity)').EndsWith('.resources.dll'))" to evaluate to a boolean instead of "$([System.String]::Copy('C:\Users\tarek\OneDrive\Desktop\StoreAp
Severity Code Description Project File Line Suppression State Error MSB4100 Expected "$([System.String]::Copy('%(Identity)').EndsWith('.resources.dll'))" to evaluate to a boolean instead of…
ASP.NET Core
Blazor
.NET MAUI
When I try to deploy to an iPhone 6 running iOS 12.5.7 I get: error MT1006: Could not install the application ... on the device 'iPwn Nova': Device is invalid (0xe8000084).
A couple of my apps and also a brand new created test app all get the same error when I try to deploy to either of my iPhone 6 devices. It also takes a very long time for the error to finally occur and the build to stop. I can say the following things…
.NET MAUI
Source generator
Hello I have a Class library, with a class using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; using System.Text; namespace FontAliasGenerator { // Step 1: Mark this class as an incremental source generator [Generator] …
.NET MAUI
.NET MAUI Dns.GetHostEntry()/Socket.Connect() exception on Android 10 and Android Emulator API 27
I have a .NET MAUI implementation of System.Net.Sockets that runs fine on Windows, but when run on Android 10, the call to Dns.GetHostEntry("GAI-W10-Dev1"); throws an exception:…
.NET MAUI
how to divide Path by line in .net android?
I am using .net android canvas. and how to divide Path into two paths by line? there is Path which by many lines. and I want to dive the shape into two paths by the green one. but actually the line is the orange one
.NET MAUI
Cannot Build iOS on Real Device: Error resolving type specified in JSON
Not getting this on other projects, but the project files look effectively the same and I'm not using any special nugets that shouldn't be cross platform... Any ideas? Copilot says this is a "known issue" and that I need to ensure XCode is up…
.NET MAUI

Maui, files go locked and even Resource Monitor cannot find what is locking it
Severity Code Description Project File Line Suppression State Error MAUI0000 System.IO.IOException: The process cannot access the file 'C:\Visual Stuido Stuff\Maui\DEVEXFullProject\obj\Debug\net6.0-android\resizetizer\r\drawable-xxxhdpi\nhllogo.png'…
.NET MAUI
How to impleyment slient printing in maui blazor
Hi, I have working on a new app for billing purposes, For cross-platform I made a project Maui Blazor. Now all other development finished, Haven't got any ideas for printing the receipts on sales. Please help me out in this scenario. Concept is…
.NET MAUI
How to fix white screen in release mode and there were no any error occured
How to fix white screen in release mode and there were no any error occured, debugging mode still can appear content in razor page, while after release to App Store keep appear white screen....
.NET MAUI
Strange behavior of .NET MAUI application on different versions of Android.
The application window styles have a background image added. The application uses a theme based on Theme.Material3.Light.NoActionBar. The application was tested on both emulators and physical devices on Android 9 and Android 15. Unlike on Android 9,…
.NET MAUI
Android arm emulator devices give confusing errors and won't start
Am trying to build .Net Maui app on new Surface Laptop with Snapdragon (ARM64) processor and Windows 11 Pro. If I install any arm device via Android Device Manager in VS 2022 (eg Pixel 7 - API 35), when I click "Start" I get an immediate error:…
.NET MAUI
Net Maui Android debug on Physical device
I should debug an android app to verify the correct functioning of the InAppBilling package by james Montemagno, as per instructions (https://jamesmontemagno.github.io/InAppBillingPlugin/TestingAndTroubleshooting.html) I have to debug on a physical…
.NET MAUI
faild to write to usb sd card in .net android
I am using .net android and I want to write to the usb sd card. var sm = (Android.OS.Storage.StorageManager)GetSystemService(Android.Content.Context.StorageService); if (sm == null) { return; } var path = sm.StorageVolumes?.FirstOrDefault(x =>…