flutterfire
flutterfire copied to clipboard
🔥 A collection of Firebase plugins for Flutter apps.
There are times when error messages aren't as descriptive as they should be. In some cases, it is just a case of using the underlying native error message description for...
web, android & iOS platforms handle setting metadata differently. Increase test coverage for setting/deleting/updating metadata to ensure cross platform conformity. [See this comment for further details](https://github.com/firebase/firebase-ios-sdk/issues/10374#issuecomment-1286205252) on the differences and...
How can I do a collection group query with a sub-collection? It looks like right now I have to have a parent (collectionId) first and then get the sub-collection part...
## Bug report **Describe the bug** Upon signing a user in from an anonymous state to an authenticated state with `signInWithCredential()`, the user's `creationTime` will be the same as their...
I have modified the [movies model class] as below. The comments field is a nested list now. (https://github.com/firebase/flutterfire/blob/master/packages/cloud_firestore_odm/cloud_firestore_odm/example/lib/movie.dart) ``` import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:cloud_firestore_odm/cloud_firestore_odm.dart'; import 'package:json_annotation/json_annotation.dart'; part 'movie.g.dart'; @JsonSerializable() class Movie...
This issue is for tracking the various query "edge-cases" that are probably worth documenting The following is a non-exhaustive list of points to cover: - `.orderBy().startAt().orderBy()` The issue: orderBy cannot...
Currently, the `await FirebaseAppCheck.instance.getToken()` method has a `String?` return type. But should return a `AppCheckToken` class like the native SDKs does. The reason for this is that this class has...
## Bug report `FirebasePluginPlatform` contains dead code. It should be renamed to `FirebasePlugin` and should not extend `PlatformInterface`. Reasoning: `FirebasePluginPlatform.verifyExtends` is not ever called. There is no reason for `FirebasePluginPlatform`...
## Description Sometimes you get errors like this: ``` [firebase_auth/internal-error] An internal error has occurred, print and inspect the error details for more information. ``` It would be helpful that...
## Bug report **Describe the bug** In firebase_database, `QueryPlatform` has a private `static final Object _token = Object();`. However, `Query` does not call `verifyExtends`. By constrast, the analogous class in...