-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jetpack Paging v3 support #194
Conversation
This is a great start thanks!. For the LoadState stuff, I think it might make sense to push it up a level into a |
I added a commit which adds a itemBinding based LoadStateAdapter. But I see you point, if we can merge all into the list then we can provide bindings all in the same adapter. instead of managing Either way the itemBinding based LoadState allows consumer to do this
I suggest we provide a tatarka interface with |
I just pushed a commit to tie in
it works. I'd like to circle back to the |
Challenges I see with the For example: (no way to know if the error/progress bindings are for the header or footer)
Be nice if consumer could specify separate bindings for Only other issue is that our code would basically duplicate logic from |
Alright, pushed up #195, thoughts? |
I dig it. posted some comments related to retry/refresh. I like the custom Only concern is that by not extending |
Pushed new PR #196 |
#193
Added support for Jetpack Paging v3 with
LoadState
/retry()
/refresh()
support