Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created September 14, 2018 01: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 juucustodio/6deaada699d5927a2346612af9624a5d to your computer and use it in GitHub Desktop.
Save juucustodio/6deaada699d5927a2346612af9624a5d 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
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using Xamarin.Forms.Extended;
namespace InfiniteScrollDemo
{
public class MainViewModel : INotifyPropertyChanged
{
private const int PageSize = 8;
private bool _isBusy;
readonly Service _service = new Service();
public InfiniteScrollCollection<string> Items { get; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment