Flutter Table Calendar Update Firestore Data

434 Views Asked by At

I am using the Table Calendar package with flutter. Please note that I am using Firestore.

I am trying to figure out how to update the list of items instantly when the user adds or deletes items. So far I need to click on the day again to see changes. I am using setState in the onDaySelected which currently updates the data. Thanks in advance for your help.

1

There are 1 best solutions below

3
On

That requires a more complex state management than using setState. Check the flutter_bloc package for example. You also have riverpod and one of the most simple is provider. You can find a lot of information in their apis and even online.

The packages:

There is also a complete list of all the state management packages you can use in Flutter. Here's the official list, and you also a not official list (however it is also valid!).