vedartm / paginate_firestore

A flutter package to simplify pagination with firestore data 🗃
https://pub.dev/packages/paginate_firestore
MIT License
113 stars 136 forks source link

Is there any way to make itembuilder async? #46

Closed BSiddharth closed 3 years ago

vedartm commented 3 years ago

Sorry item builder cannot be async as it expects a widget. Although you can return a FutureBuilder and make a call for every item you list. But ideally you should not make any network calls for each item in the list. Hope this helps!