Posts by Carlos Tarabal • 1 point
1 post
-
-1
votes1
answer17
viewsQ: Take the size of the firestore array to use in Listview.Builder itemcount
return Scaffold( body: StreamBuilder( stream: stream, builder: (context, snapshot) { if (snapshot.hasData) { return ListView.builder( itemCount: snapshot.data.docs.length, itemBuilder: (context,…