Fixed
Status Update
Comments
du...@google.com <du...@google.com> #2
Any updates on when we can expect RxJava 3 support in the androidx.paging library? It looks like some of the other androidx libraries already support it. Example https://android-review.googlesource.com/c/platform/frameworks/support/+/1277904
Description
Version used: 3.0.0-alpha06
Devices/Android versions reproduced on: all
Case: I have list, and I can delete items. So for example I have 21 items and pageSize = 10. So I load page0, then page1 and page2. Then I delete last item, and invalidate source, state.anchorPosition = 20 , so I started with page = 2, there are no items and I return LoadResult(emptyList, 1, null) but there are no Prepend load so I get empty state in UI.
Code snipped of PagingSource
I could not find out why there are no Prepend loading, may be I missed smth.