Maksym Koshovyi
Maksym Koshovyi
Not sure if it's still gonna help, but I found an article detailing how to perform the migration: https://www.syncfusion.com/blogs/post/how-to-reuse-xamarin-forms-custom-renderers-in-net-maui.aspx
1) I think you should retarget package to `net6.0;net6.0-ios;net6.0-android;net6.0-maccatalyst;net6.0-windows`. 2) You should remove all `Xamarin.Forms` packages (and packages that reference `Xamarin.Forms`), and add this to `csproj` ```xml true true true...
> i have kept the MAUI work exclusively within https://github.com/rotorgames/Rg.Plugins.Popup/tree/Maui-Compatibility/Rg.Popup.Plugin.Maui My bad, I didn't notice `Rg.Popup.Plugin.Maui` folder, opened `Rg.Plugins.Popup.sln`, and wondered, why is project targeting `.netstandard` and referencing `Xamarin.Forms` 😄...
> Are you using Rider to auto suggest these fixes (concerning nullable and whatnot) Nope, got all suggestions from the VS. There're around 100 warnings left by the way, but...
Tried it on physical Pixel 4 (Android 12 Beta 5). Same crash. Maybe my VS is broken. PS: `git clean -fdx` -> Rebuild also didn't help
@yunusefendi52 Good catch! I thought it was a built-in converter. Updated convertors do work. - Why did you change this? ```cs if (fieldInfo != null) return (Easing?)fieldInfo.GetValue(null); ``` - Would...
> I think you should set up that manually Thanks, forgot about that. Good thing is that there's now new "Maui way" of doing this via `ConfigureLifecycleEvents`. Created a PR....
@LuckyDucko Now all popups not close on back button 😄 You need to remove `public override void OnBackPressed()` from `MainActivity` to Maui lifecycle to work (calling `base.OnBackPressed()` also should work,...
@martijn00 Why is this closed? Latest NuGet release still doesn't support any of `net6` TFMs, and not-yet-released MAUI project in this repository[ only supports Android](https://github.com/rotorgames/Rg.Plugins.Popup/blob/Maui-Compatibility/Rg.Popup.Plugin.Maui/Rg.Popup.Plugin.Maui/Rg.Popup.Plugin.Maui/Rg.Popup.Plugin.Maui.csproj#L5). Is MAUI support dropped for...
@AndreiMisiukevich, found another one 😅 Trying to use `CollectionView` instead of `ListView`, and this bug really prevents me from doing that