Fixed
Status Update
Comments
ni...@google.com <ni...@google.com> #2
A couple of questions:
1. Have you saw crash in real device or only in simulators?
2. Do you use dynamic feature for language ID?
1. Have you saw crash in real device or only in simulators?
2. Do you use dynamic feature for language ID?
du...@google.com <du...@google.com>
ap...@google.com <ap...@google.com> #3
Tested on Android 12 Emulator with custom executor, but cannot repro this issue.
Description
Component used: androidx.paging:paging-compose Version used: 1.0.0-alpha01 Devices/Android versions reproduced on: Google Pixel 5 (API 30)
PagingDataAdapter
exposes arefresh
function which interally calls through toAsyncPagingDataDiffer#refresh
. This is useful for scenarios like a swipe-to-refresh on a paged list screen, or for some kind of retry UI when regaining connectivity on a paged list screen that initially failed.It would be great if
LazyPagingItems
(which uses aPagingDataDiffer
internally) could expose this function as well.