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.
@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?