Skip to content

Instantly share code, notes, and snippets.

@fluxtah
Created January 20, 2020 15:31
Show Gist options
  • Save fluxtah/02ad78809a7472ff6f98f775da2b1ed7 to your computer and use it in GitHub Desktop.
Save fluxtah/02ad78809a7472ff6f98f775da2b1ed7 to your computer and use it in GitHub Desktop.
val data = PaginatedLiveData<String> {
hasMore = { loaded.size < 100 }
nextPage = {
listOf("Hello")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment