Pagination scroll login help

I am using Spreadsheet1



.GotColumn to load image URLs into CardView.
How can I implement pagination (10 images per scroll) like infinite scroll using Spreadsheet component?


Hi everyone,
I am building a wallpaper app using the Spreadsheet component.
All image URLs are stored in a single column.
Currently, I am doing this:
Calling Spreadsheet1.GetColumn
In Spreadsheet1.GotColumn
Passing all values directly to Grid/CardView
Problem is:
It loads all images at once, which causes lag when there are many images.
What I need:
• Load only 10 images initially
• When user scrolls to bottom, load next 10
• Continue until all rows are loaded

Hi dear,

Our dearly RaYzZz recently created this guide,

1 Like

Hi bro :waving_hand:
I saw your Lazy Loading / Infinite Scroll guide. It’s really helpful :raising_hands:
But in my case, I’m not using Web API or Airtable. I’m using the Spreadsheet component to load image URLs.
Since Spreadsheet doesn’t support limit/offset like APIs, what would be the best way to implement loading 10 images at a time while scrolling?
Should I:
Load the full column once and manually paginate using index logic? or
Is there any better optimized approach for Spreadsheet?
Would appreciate your suggestion. Thanks :folded_hands:


can easly find it here

There’s also aia file

1 Like

Hi dear,

Spreadsheet = Airtable

Lazy loading / Infinite scroll - Airtable


Remember to add Token in the headers and replace BASEID/TABLEIDORNAME

Airtable docs - Finding table IDs

Airtable docs - Finding base IDs


And here you create the token
https://airtable.com/create/tokens

Thank you so much bro