Content
CommunityToolkit.Maui.Storage.FileSaver on iOS strange
I have the latest release version of CommunityToolkit.Maui (5.0.0). When I run CommunityToolkit.Maui.Storage.FileSaver in my app on iOS I get a strange user interaction. The window shown looks like that in the iOS_FileSaver.png image attached. The…


How do I add a data entry control inside of the ListView.
I am trying to add a data entry control called Entry Cell inside of a ListView so that the user can enter data that I can save to the Database. I get the error... A value of type 'EntryCell' cannot be added to a collection or dictionary of type…


Samples for Xamarin.iOS projects should be upgraded to .NET SDK-style projects in Xamarin Support Policy
I developed a cross-platform applications with Xamarin.iOS.framework and Xamarin.Mac.framework and Mono.framework. I found some anxious information in https://dotnet.microsoft.com/en-us/platform/support/policy/xamarin. I want to know what's the quickest…


NET MAUI - Keep keyboard focused on ListView update
I have a ListView with an ObservableCollection of Database Entries. When I update the Observable collection the focus of the Entry get lost and the keyboard disappears. Even when i set the focus afterwards manually the keyboard does not appear. Thats my…


Can you please tell me how to animate the CommunityToolkit.Maui's Expander control for opening and closing it slowly?
I would like to show some hidden tips with a simple implementation of CommunityToolkit.Maui.Views.Expander control -- such as using a Label control as its content. It would be visually nice if the Expander opens and closes slowly, say with some Easing…


How to use NET MAUI releases with different NET versions
I am working on small tool using NET MAUI, but I am struggling to understand Microsoft's way of working on NET versions. While working on my tool, I have came up with certain bugs and reported them to Microsoft. Now they have fixed them. However I am…


This App Bundle contains native code, and you've not uploaded debug symbols. We recommend you upload a symbol file to make your crashes and ANRs easier to analyze and debug.
After uploading app bundle on google play it's showing this warning "This App Bundle contains native code, and you've not uploaded debug symbols. We recommend you upload a symbol file to make your crashes and ANRs easier to analyze and…


Net Maui CollectionView, Image Source
I have a CollectionView in .Net Maui, and this collectionview has items as Label and Image, ImageSource i am getting from URL, also I have bottom tabs, and when I am switching tabs and come back to parent tab, all images are lost in collectionview


how to Clear Cookies not working on WebAuthenticator when Sign out
I am using Open ID Connect for sign in/out. i follow this link https://community.abp.io/posts/integrating-maui-client-via-using-openid-connect-aqjjwsdf After successful sign in, i sign out, then sign in again WebAuthenticator automatically logs me in…


Blazor MAUI blank screen on iOS
I have a Blazor Hybrid MAUI App that works great on Android. However, when I compile my code (both from VS and from dotnet publish in Azure Pipeline) to iOS the app just shows my splash screen and then shows a blank white screen (both on Simulator and on…


How to localizae application display name of iOS developed with .NET MAUI?
Display name is localized on android in (Resources\values) folder and it works as expected. However, I can't get it to work with iOS. What have been done: In info.plist make sure there is this code …


Maui android layout content to fite in screen size
Hello all. How I can ensure that my layout content fit in any device screen. I test my app in my phone and it's ok but how I can be sure that it will fit in any other android device. I know I can use scrollview. but I want to know if it possible to…


Why is Maui's "Colors.xml" not found building with Visual Studio Mac but is with Visual Studio Windows?
Using VS Mac 17.6 Preview 2, building a MAUI application, it is responding with "Resource "Resources/Styes/Colors.xml" not found (XFC0124)" as an error. Building the exact same code, just copied to the Mac for its build, with VS…


Why .Net 8.0 does not show up as Traget Framework for a new .NET MAUI App on Mac?
I have installed both Visual Studio 2022 for Mac v17.6 Preview and .NET 8.0, all successfully installed. Platform: MacBook Pro, x64 (2.2 GHz, 6-core Intel Core i7, 16GB/256GB), macOS Ventura Version 13.1 I've also successfully run dotnet workload install…
ContentView add GraphicView can display in android and not display in windows ? bug?
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:drawables="clr-namespace:myMolly.Drawables" …
Perform (Create, Read, Update, and Delete) operations on a ListView in .Net Maui
Hi Friends. I have a ListView in a Content Page that I would like the user to be able to Perform (Create, Read, Update, and Delete) operations on in .Net Maui. Thanks in advance for for any help.


Net7 Maui Unable to load DLL 'Microsoft.ui.xaml.dll'
In Visual Studio, using Net7, when debugging project it runs fine. If I go to the directory and run the exe I get the following message in application log "Exception Info: System.DllNotFoundException: Unable to load DLL 'Microsoft.ui.xaml.dll' or…


How to Access the Property Setter with CommunityToolkit.Mvvm which is backed by Automatic Source Code Generation?
I am changing my binding properties to the simplified CommunityToolkit.Mvvm pattern backed by automatic source code generation, and tagged with the [ObservableProperty] attribute, hence: The new way: [ObservableProperty] bool…
How can I send a raw message in .net maui for android, no compiling sample found
Hello, I would like to find a sample project in .net MAUI for android to send a raw message via USB, no compiling sample found. I found this project which work well on pAX IM30 Android 7.1 : https://github.com/kai-morich/SimpleUsbTerminal I would like…


Can the CommunityToolkit.Maui.MediaElement be used in Code-behind?
I can use the CommunityToolkit.Maui.MediaElement to play an audio file in XAML. I understand this control can also play video but my need is just to provide an audio prompt from within a code behind. I tried the following which compiles okay, but nothing…