Home > Enterprise >  How to efficiently update the firestore while listening to any changes
How to efficiently update the firestore while listening to any changes

Time:05-12

I want to update the firestore database every time a change in its value is encountered. I have discussed it in the post

Cannot read data after updating it in firestore from flutter app

but my approach might be wrong. How can I achieve my objective? Please help.

CodePudding user response:

Read the Documentation of Stream Builder. It will help you in this regard...

  • Related