lukestokes94

Results 3 comments of lukestokes94

@xero88 this seems to happen whenever there is an upgrade for Flutter. The workaround I'm using is to let Flutter update and then delete Xcode's derived data and then rebuild...

I do something similar to Tim's method with a Hive database which stores a list of unique document ID's. In my widget build method I compare the list of document...

This seems more like a FlutterFire question than Geoflutterfire, but to answer your question, 'whereIn' can be used as such: _firestore.collection('example') .where('field', whereIn: List) .snapshots(), If you can't access the...