Skip to content

Instantly share code, notes, and snippets.

@ekoo
Created June 13, 2020 09:48
Show Gist options
  • Save ekoo/ed5a068407944a24078c854cfffc8907 to your computer and use it in GitHub Desktop.
Save ekoo/ed5a068407944a24078c854cfffc8907 to your computer and use it in GitHub Desktop.
class MainRepository {
fun getMovie(): Flow<PagingData<ResponseModel.MovieModel>> {
val moviePagingConfig = PagingConfig(pageSize = 10)
val moviePagingFactory= { MoviePagingSource() }
return Pager(config = moviePagingConfig , pagingSourceFactory = moviePagingFactory).flow
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment