Andrew Steinmetz
06/04/2022, 2:32 AMArkadii Ivanov
06/04/2022, 6:55 AMIntent.LoadMore
which is issued in the UI when the last item (or loader) is shown. In the Store, you have the size of the list and you execute a request (or query) with offset=items.size
. You can also have canLoadMore
flag in the state, which is updated every time a new batch is loaded. And you can also store page tokens in the state if that's needed. No need for additional paging libraries.