adrfinance
adrfinance5w ago

adrfinance - Hi @Gaurav Chadha , do you know wh...

Hi @Gaurav Chadha , do you know what is the way to make a paginated call using a Flutterflow datatable and using Buildship as back end?
3 Replies
Gaurav Chadha
Gaurav Chadha5w ago
I think you can handle it directly on FlutterFlow side https://community.flutterflow.io/ask-the-community/post/pagination-iZUgzGsxw98JxZq . cc @Stu any insights would be helpful?
FlutterFlow Community
Pagination
Hi , i want to do pagination but not with Backend Query I want to handle paging control and call api when user reach end of list
Stu
Stu5w ago
Hi @adrfinance , FlutterFlow's datatable widget can be a tricky one to set up, in my experience. As @Gaurav Chadha says, it's probably going to be easier for you to set pagination up using FlutterFlow's recommended process in their documentation docs. The reason for this is that any filtering and/or sorting will need to use the same custom functions they provide in the Documentation. The other alternative is to forgo the datatable widget and use a standard listview, and impliment infinate scroll (with a pagination value in the API call), which may end up being a simplier solution depending on your use case.
adrfinance
adrfinanceOP4w ago
@Gaurav Chadha @Stu I am using Supabase as a database so the classical Flutterflow pagination does not work. I don't know if you ever came across this issue?