Display list of items from Cloud Firestore(Firebase)
Create a new dart file in lib : recipes.dart Create a stateless widget inside the above file class Recipes extends StatelessWidget {} Return a Scaffold with an AppBar from the build function Add a StreamBuilder to the body of the Scaffold StreamBuilder(stream: ,builder: (context,snapshot){} ) Provide the reference of the …