Henry

Results 28 comments of Henry

@brminnick yes it does ![image](https://user-images.githubusercontent.com/20151415/164802037-93866550-f475-4c35-b5dd-7176687f6469.png)

From here: https://github.com/dotnet/maui/blob/8b56c0b1e703804631f280370fd34789ffa21b16/src/Controls/src/Core/Picker.cs#L32

I'd say it should depend if the Enum defines a value for -1. If it doesn't returning null seems to work okay in my app. If it does then that's...

The thing that worries me is that this happens only when MAUI is a weird state when the Picker has not loaded, I think. It happened when I switched between...

Same issue here. UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 49: character maps to

I saw this when I packaged the app. It seems like there's a hard coded .NET image which goes under the icon set through `` ![image](https://user-images.githubusercontent.com/20151415/162508782-0e589617-7dcd-4d20-bc8f-ea100b546217.png)

Is this normal? I am testing my own application and I've done all the required things: do not use AOT (bigger files), use brotli (dynamic and static), use http3 and...

@danroth27 is the delay of about a second between Blazor assemblies downloading and the app starting its function normal? (see above: https://github.com/dotnet/aspnetcore/issues/42284#issuecomment-1181850985)

There's a very similar issue with CollectionView when adding and clearing items quickly that even existed on XF: https://github.com/xamarin/Xamarin.Forms/issues/13268 In my own app, I have to use a bunch of...

Ok now the drop zones fully work on mobile using JS interop (no other choice imo for such a feature) Simple drag and drop: ![mobile_simple_drag](https://user-images.githubusercontent.com/20151415/177038537-e0097e00-2d61-4788-a708-fe6bb0d3d29c.gif) Transfer zones: ![mobile_transfer_zones](https://user-images.githubusercontent.com/20151415/177038621-e5567066-5c69-4563-9d32-97709052bbd0.gif) Reorder Items:...