Displaying the data from the firebase in list that if I pressed on one of its item it takes me to a full data page – Flutter
I'm using flutter web in my graduation project and saving my data in the firebase so I'm displaying my data by the following code StreamBuilder<QuerySnapshot> ( stream: FirebaseFirestore.instance.collection('Guests').snapshots(), builder: (context, snapshots) { return (snapshots.connectionState == ConnectionState.waiting) ? Center( child: CircularProgressIndicator(),)…