You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 13, 2023. It is now read-only.
I need to start with a large empty list and load items into it lazily afterward, in order to set the initial scroll position somewhere in the middle.
I noticed that there is an option for placeholders in the PagingConfig class:
PagingConfig(
pageSize =10,
enablePlaceholders =false// Ignored on iOS
)
Is it doing anything currently on Android?
As far as I know, it requires setting the itemsBefore and itemsAfter parameters in the androidx.Paging's LoadResult.Page in order to work.