The .NET MAUI Community Toolkit is a collection of common elements for development with .NET MAUI that developers tend to replicate across multiple apps. It simplifies and demonstrates common developer tasks when building apps with .NET MAUI.
Questions tagged [maui-community-toolkit]
190 questions
-1
votes
1 answer
Community Toolkit Maui Popup Crashes When Clicking Outside
Community Toolkit Maui Popup crash when clicking outside of the dialog.
But this happens only if the popup contains an Entry control.
See the sample at GitHub:
https://github.com/HaimoHeymann/MauiTestApp
Any solution? Thanks!

Haimo
- 51
- 5
-1
votes
2 answers
Community Toolkit popups slow down a MAUI app
Each time popup is shown, the time to show it increases. More elements in the popup, longer the time. I have made a demo app, showing a popup with 100 buttons. On my PC, the first launch takes about 300 ms which is fine, but this escalates quickly…

Mike Tsayper
- 1,686
- 1
- 17
- 25
-1
votes
2 answers
How do I Notify Dependent properties within a object within a collection
Whenever the variables within weather change, I want to update the objects in Weatherlist so they contain the new updated information.
[ObservableProperty]
private ObservableCollection weatherList = new…

Wiemar
- 11
- 2
-1
votes
1 answer
How to use Toucheffect in Maui. In xamarin forms we can do it using the xamarin toolkit.
This is the shared touch effect files
This is the android platforms specific code
This is where I register the effect and the handler
This is where I used toucheffect nativeanimation property
Some properties are working , for example : the…

Kavindu Mihiran
- 11
- 3
-1
votes
2 answers
how I can update an object in Maui and send it to another page
my problem is when I send an object of Order to my function, it comes Null without updating my values, how can I edit them?
I try to update my Object. I expecting get in my function Object of Order with the value and not null
here is my function…

Matan Fadida
- 47
- 6
-1
votes
1 answer
CarouselView control: how to block user from getting to the next item in certain situations
I use the latest ver of .Net Maui. In the scenario there is ObservableCollection of items bound to ItemsSource's CarouselView. User is supposed to do some actions upon the current item to make it "valid" in order to be able to move to the next one.…

YMC
- 4,925
- 7
- 53
- 83
-2
votes
0 answers
Popup with absolute position
I want to create a picker with posibillity of multi-select.
For that I'm trying to create a popup with a collection view with selection type multiple but I don't know how I can open the popup to a given x, y position.
Position witch will be provided…

Nicoara
- 318
- 2
- 15
-2
votes
1 answer
how to fix CommunityToolkit Maui missing assembly for andoird - .NET MAUI
I've a .NET MAUI project setup with the nuget packages for CommunityToolkit.
it says that it's not available for android.

Dean Van Greunen
- 5,060
- 2
- 14
- 28
-2
votes
2 answers
JsonSerializer.DeserializeAsync no error, no exception, no result
In my NET MAUI application I am de-serializing a http response:
private async Task SerializeResponse(HttpContent content)
{
var options = new JsonSerializerOptions
{
PropertyNameCaseInsensitive = true
};
using var…

Wasyster
- 2,279
- 4
- 26
- 58