skip to Main Content

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(),)…

VIEW QUESTION

navigation inside Futurebuilder – Flutter

I am trying to navigate after login inside futurebuilder. api request done successfully but navigation getting error while testing. Help me How to use futurebuilder properly. child: ElevatedButton( onPressed: () { // Validate returns true if the form is valid,…

VIEW QUESTION
Back To Top
Search