You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, thanks for this project. It helps identify issues massively!
I noticed that whilst the page is cleared down much better, our view models were not getting cleaned out. Doing some digging, it seems that tap gesture recognizers keep their reference and aren't cleared.
Adding the following snippet helped clear these instances that were not previously.
if(vte is IGestureRecognizers gr){
gr.GestureRecognizers.Clear();}
I have not raised a PR as you may not choose use to it and/or have alternate ideas based on this.
Happy to discuss more.
The text was updated successfully, but these errors were encountered:
First of all, thanks for this project. It helps identify issues massively!
I noticed that whilst the page is cleared down much better, our view models were not getting cleaned out. Doing some digging, it seems that tap gesture recognizers keep their reference and aren't cleared.
Adding the following snippet helped clear these instances that were not previously.
I have not raised a PR as you may not choose use to it and/or have alternate ideas based on this.
Happy to discuss more.
The text was updated successfully, but these errors were encountered: