skip to Main Content

How do I put simple FireBase data into a ListView?

How do I get some FireBase data into a ListView? The following code successfully returns a list of products from FireBase: final CollectionReference _products = FirebaseFirestore.instance.collection('products'); Future<List> getList() async { QuerySnapshot querySnapshot = await _products.get(); final temp = querySnapshot.docs.map((doc) =>…

VIEW QUESTION
Back To Top
Search