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 has been archived by the owner on May 12, 2020. It is now read-only.
Say my async load function only fetches 3 rows at a time. And 3 rows are just half of the screen.
For now I need to scroll the rows in order onLoadMoreAsync to be triggered to load more rows. Ideally I'd like it to be triggered while (canLoadMore && the screen isn't full with rows).
Otherwise great project, thanks=)
The text was updated successfully, but these errors were encountered:
Yeah, this is a real bug. I spent some time a few months ago trying to fix it cleanly but got stuck since the notion of rows is specific to ListViews, not ScrollViews, so InfiniteScrollView doesn't have enough information to know when ListView has finished rendering the rows (potentially after several frames, depending on what your pageSize prop is set to) and that we need to fetch more. Sorry I don't have a more optimistic update than that.
Well, this one is more of a feature request.
Say my async load function only fetches 3 rows at a time. And 3 rows are just half of the screen.
For now I need to scroll the rows in order onLoadMoreAsync to be triggered to load more rows. Ideally I'd like it to be triggered while (canLoadMore && the screen isn't full with rows).
Otherwise great project, thanks=)
The text was updated successfully, but these errors were encountered: