Steve Shaw
Steve Shaw
I just had this happen on a Xamarin.Forms iOS **iPhone** Release build. For me, did NOT happen on **Android** Release build. Nor on **iPhoneSimulator** Release build. Nor on **iPhone** Debug...
I agree with @robloo. Actually, I have a stronger view: Not worth the effort to attempt. Much harder than you think. "Opportunity Cost": If people attempt to do that, what...
@redradist - such a hierarchy is in MAUI itself. Would be redundant to have that here, IMHO. The outcome I want is Maui > these Graphics.Controls > Maui.Graphics > bitmap...
@jonlipsky - I find Skia's [SKPaint](https://skia.org/docs/user/api/skpaint_overview/) very convenient. I use it extensively in Skia, in a 2D game sample that I have been working on. What about defining an interface,...
@charlesroddie > If Maui.Graphics takes over from SkiaSharp as the main .Net platform-independent graphics abstraction... That's a big "if". The advantage of Skia is its universal support - extending beyond...
WinForms on .NET 6.0 is [dotnet/winforms repo](https://github.com/dotnet/winforms). You'll want to ask there. Or ask at StackOverflow, with tags [`.net-6.0` `winforms`](https://stackoverflow.com/questions/tagged/.net-6.0+winforms). BTW, [official docs for WinForms .NET 6](https://docs.microsoft.com/en-us/dotnet/desktop/winforms/?view=netdesktop-6.0). ---------------- If you...
@hartez > `Color?` ... and go with the convention that cross-platform colors default to null Wouldn't that *require* most internal methods to take `Color?` instead of `Color`? Otherwise, there would...
Give LoadImageFromStream the optional second parameter, to tell it the image type: LoadImageFromStream(stream, ImageFormat.Png); I'm guessing it didn't figure out that it was a png.
Don't use a CollectionView inside an ItemTemplate. Too expensive to create multiple collection views (one per item). Instead, inside an ItemTemplate, use a VerticalStackLayout with a [BindableLayout](https://docs.microsoft.com/en-us/dotnet/maui/user-interface/layouts/bindablelayout).