Home > database >  Is there any possible way to retreive data from firestore and to display it in a Text Widget in Flut
Is there any possible way to retreive data from firestore and to display it in a Text Widget in Flut

Time:12-23

I want to retrieve data from firebase firestore and display it inside a Text widget in flutter. So once the User logs into the application, the user can see his name right there (which is retrieved from firebase firestore). I have linked the firebase User_ID as my document id in firebase firestore.

The data which is retrieved from firebase firestore must be displayed in the Text Widget at all times (I want to retrieve the name from firebase firestore and display it to ther user in the Text Widget).

How can i do this?

CodePudding user response:

You need to sit down and read the documentation of flutter fire, which if very complete and well explained Yoy can start here and if you want videos there are a good start point here

  • Related