I am using the Deck Swiper component to display a collection in my app. I want the user to be able to endlessly browse the collection (it’s really big - 10,000+ rows)
The issue I’m facing here, is that when I select no maximum number of elements to load, the app hangs (because it tries to load all the elements, I guess). If I select a certain number of maximum elements, then I cannot load more once the user has viewed them all.
Requesting any help I can get on this. One idea I had was to implement lazy loading like in the case of the vertically scrolling list in Adalo (load more as user scrolls…)