Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Unintended behavior
View staffing
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.