I am currently filling a beautiful Table Calendar (https://pub.dev/packages/table_calendar)
To get my data I currently doing this:
Firestore.instance
.collection('nurseries')
.document(widget._favoriteNurseryId)
.collection('events')
.orderBy('eventDateStart')
.snapshots(),
I need to find a solution to filter data only for displayed month on the screen. For now i fetch all events on database. It cost me too many firestore Reads.