Content
Is there some way to get VS 2022 to stop closing my Maui app with no reason/no error in VS?
The last few days I am getting VS closing my app in the Android emulator for no apparent reason. If I plug in my phone and do testing from there I don't get the problem. I have gone thru the horrible process of trying to re-init the emulator but it…
.net maui fully custom splash screen
I am working on . net maui splash screen but there are android 12 and later issues. So I can not set splash screen like make image like previous android versions. But I want and set it image that has contents on all screen. I have seen many splash…
How to fix System.NullReferenceException in WinUI3 Maui using UNO with Miui on Android 13 33?
I am working on a multiplatform program using WinUI3 and UNO with Miui, following the Microsoft lessons. However, I am encountering the error "System.NullReferenceException: 'Object reference not set to an instance of an object.'" on my Android…
How i can retrieve youtube subtitles on a MAUI project
Im trying to find a way to retrieve youtube subtitles for a MAUI project i would love to make, sofar i cant find a nuget package for this job and it seems the only way/hack to do that is this…
Android issue when compiling for 'deploy'
When compiling for deploy I get error (full log attached): "C:\Program Files (x86)\Android\android-sdk\platform-tools\adb" -s emulator-5554 uninstall -k "com.companyname.randoPro" The -k option uninstalls the application while…
MAUI extensions not available on visual studio 2022
I have Visual Studio v 17.7.4 and Visual Studio Preview v 17.8.0 and have recently installed the MAUI suite.  I am not given the option to create multi-platform apps as I assume I would on VS or VSP. I have gone through previous iterations of the…
How can I get the Material You design in my Maui app on Android?
When running my app on android, the controls are of Material design 2, while the latest is 3 - Material You. Can I in some way update the android part of the project to support the latest design?
In Blazor MAUI with a shared UI library, navigation doesn't work
In a shared blazor library, login page and sample page are defined. Here is the Minimum Reproducible Example: https://github.com/johnmangam/ShellNavigation/ Login.razor @page "/login" @inject NavigationManager navigationManager <button…

How to secure API KEY in .net MAUI?
I am new to .Net MAUI but fairly experienced with ASP.NET CORE and Blazor. I'm developing a MAUI application that will allow a user to integrate with third-party services using API keys. My issue is, I'd like to store API Key securely and nobody can…
.NET Maui: how do you process low memory notifications from iOS
iOS sends warnings to an app when it approaches its memory limit. How do you process those warnings in a .NET Maui app? (I see that for Android, .NET Maui supports delegates OnApplicationLowMemory and OnApplicationTrimMemory, but I do not see any such…
Visual Studio for Mac support .NET 7.0 Bindings to Xcode 15?
Hello, we are in the middle of porting our Xamarin Forms application to .NET MAUI and need to know if Visual Studio for Mac will support .NET 7 binding for Xcode 15, and if so, do you have information about a release date?

Pdf file creation
Hello Friends. I am trying to create a Pdf by using a service in .Net Maui. At the code below it throws a System.NullReferenceException. Can someone tell me what might be going on. Thanks…
.NET Maui support - Splash image size
I'm using .NET Maui and would like to add the splash screen. Now Maui uses a single svg file. Checking the Android documentation, there's a new size for the splash https://developer.android.com/develop/ui/views/launch/splash-screen for Android v12 and…
ContentPage not (anymore) showing via 'url'
after some VS/w11 updates, a simple/static 'ContentPage' (MotivationPage) does not show anymore (see attached.png) PS: All other functions in the App work ok! Of course I do NOT exclude any changes I made ....! But I'm not aware of! environment: VS…
Fix .NET MAUI entry special characters not displayed
Hello, I just started using .NET MAUI and I followed this tutorial for beginners: https://www.youtube.com/playlist?list=PLdo4fOcmZ0oUBAdL2NwBpDs32zwGqb9DY. In this tutorial, the main view contains an entry and a button next to it to add the text in the…
.Net MAUI app unable to run on Windows server 2016 machine
Hi Team, I am working on Visual Studio 2022 on windows server 2016 machine. I have created a new .Net MAUI project, while running it( by selecting windows machine), getting below error - dep0600: deployment failed. entrypointnotfoundexception - unable…

Publish - omit multi languages folders
Hi, When publishing Maui app as exe it create these folder(320 MG). What are these folder ? if i do not use multi- languages, it can be avoided through publish action ? My publish command is: dotnet publish -f net7.0-windows10.0.19041.0 -c Release…
How to view the pdf file from MAUI?
I need to view the pdf file in my MAUI application. Dedicated popup page to view my pdf file with Zoom, pan controls Target platform - Windows
How to customize everyone Tab in TabBar
For example, I want create Shell with TabBar. BG of TabBar must be blue, and BG of Current Tab in TabBar must be orange. How can I do it?
Opening pdf file from url
Hi I am using this code to open a pdf file from a url; var DocPath = "http://mydomain.com/Docs/MyDoc.PDF"; Launcher.TryOpenAsync(new System.Uri(DocPath)); However I am getting the 'Cannot display PDF (MyDoc.PDF cannot be opened)' error. Tried…