Hi, i want to try your components and start using them in my projects. And this one is really great, but i have one problem.
In my project i use Prism mvvm. I have one page that only contain SfImageEditor, and i bind to source property an image. It does work generally ok, save works, edit image works just as expected. Workflow is like this, i have list of images on one page, on click on any of it I open new page with ImageEditor. But the problem is following.
Everytime i open new page with ImageEditor memory grows. So i open one page with image editor, go back, open new one memory constantly grow, and in some point of time there is memory overflow. I have tried both modal and regular navigation. Tried to pass just path, to pass image source with file, image source with stream. To have just one ImageEditor that i pass to this page and set Content to it. Everything is the same.
Also i tried just to show image instead of SfImageEditor to check is there some leak from my side, but memory didn't grow.
Also tried to call GC.Collect(); but it also didn't help.
Do you have idea what is problem with this?
Thank you!