Skip to content

Instantly share code, notes, and snippets.

@dasMulli
Created June 7, 2019 19:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dasMulli/64d0e3627ea2e982f56b5ca8209a681f to your computer and use it in GitHub Desktop.
Save dasMulli/64d0e3627ea2e982f56b5ca8209a681f to your computer and use it in GitHub Desktop.
Xamarin.Forms UWP ListView memory leak workaround
using Xamarin.Forms;
public class MemoryLeakWorkaroundViewCell : ViewCell
{
protected override void OnDisappearing()
{
base.OnDisappearing();
base.Parent = null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment