Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created September 14, 2018 01:51
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 juucustodio/dac8d8904c3ef5439a51527e62718dff to your computer and use it in GitHub Desktop.
Save juucustodio/dac8d8904c3ef5439a51527e62718dff to your computer and use it in GitHub Desktop.
Example how to implement Infinite Scroll in Xamarin.Forms applications. - http://julianocustodio.com/listview-infinite-scroll
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment