Load more option in airtable

For example i have more than 10 rows in airtble


and
I have shown 10 lists on listview when screen initialize ,

And i want to add load more button , can anyone help me please.
Case I : 1-10,11-20,21-30,…
Case II : 1-10,1-20,1-30… like this

1 Like

Currently used blocks of Airtable dosnt let us do that,

You Can Load Some Images Like If You Have 50 Images

 >   When More Button Click {
 >     if length of column = get global images {
 >     then {
 
  set global images 0
 set label.text to "no more images fond"
 >     else {
 > 
 >         Get Column {
 >         Column Name : images;
 >         Max record : get global images;
 >         {
 >         set global image get global image + 10
 > 
 >         } } } }
1 Like