flutter_geofire icon indicating copy to clipboard operation
flutter_geofire copied to clipboard

A Flutter plugin to get the realtime updates of places nearby usinf Firebase GeoFire.

Results 14 flutter_geofire issues
Sort by recently updated
recently updated
newest added

Please make this package available for web

I am working on this geofire package and I have been trying to initialize a geofire, then stop that listener from one button. And then i have another button that...

Hi, I'm getting this issues while querying a new path in a session. I have made 2 sites for storing the location of male & female separately. When a user...

Hello, Is a one time query possible instead of stream?

I've realised that after invoking: `Geofire.queryAtLocation(latitude, longitude, radius).listen((map) {}` and getting successful results, if you press the back button and then launch the app again, the query won't return any...

When ever i run my project i get this error: Error: CocoaPods's specs repository is too out-of-date to satisfy dependencies. To update the CocoaPods specs, run: pod repo update Error...

Added functions to update the location query without stopping the geofire listener.

I made some modifications to your original code to allow for streams of keyEntered and keyExited events and an onReady event. If this is something you would like, feel free...

could anyone made it work for flutter web and if yes could please share the solution? otherwise I will be looking at implement it over the next week. thanks

I the shortest way. This: ```dart Geofire.queryAtLocation(position.x, position.y, 8587)!.listen((event) { }); Geofire.queryAtLocation(position.x, position.y, 8587)!.listen((map) { print('results: ${map['key']}'); }); ``` Produces the undermentioned output: ``` I/TAG (23346): GeoFire.start I/TAG (23346): queryAtLocation...