firebase_dart_sdk
firebase_dart_sdk copied to clipboard
Unofficial Firebase Flutter SDK. Maintainer: @long1eu
Adding the package to [pub.dev](https://pub.dev) will help more people and developers to find and contribute to it. Readme file should include more info (with the link to the pub dev...
* Fix example not having a Dart SDK lower bound constraint * Updates all dependencies to latest resolvable null-safe versions * Migrate deprecated buttons in example * Regenerate macOS podfile...
I built the example targeting macos and get the following errors: Because google_sign_in_dartio >=0.0.7 depends on shared_preferences_macos ^0.0.1+10 and google_sign_in_dartio =2.0.0 depends on shared_preferences_macos ^2.0.0, shared_preferences >=2.0.0 is incompatible with...
We already have persistent embedded document-oriented NoSQL database for Dart which support multi platform like [objectdb](https://pub.dartlang.org/packages/objectdb) or [sembast](https://pub.dartlang.org/packages/sembast). Using SQLite gives us downsize, too many implementation for every platform. On...
Hi @long1eu, this lib really seems promising for firebase usage. I'm wondering how can we use firebase analytics for flutter windows?
From the example it seems we have to use a custom ` runFirebaseApp` to specify firebase options. But this goes against the "Everything is a widget" rule Flutter uses. We...
Hot restarting the app will make the db connection unusable since we open it in lock mode. ``` -[FMResultSet nextWithError:]:168 Database busy (/var/mobile/Containers/Data/Application/F2C1D3CD-7968-46DE-B5EE-73B92CA02147/Documents/firestore.%5BDEFAULT%5D.flutter-sdk.%28default%29.db) Database busy [VERBOSE-2:shell.cc(181)] Dart Error: Unhandled exception:...
AsyncQueue is currently a singleton witch in not a very good Idea if we have multiple FirebaseFirestore instances.