snippets-flutter icon indicating copy to clipboard operation
snippets-flutter copied to clipboard

Results 9 snippets-flutter issues
Sort by recently updated
recently updated
newest added

When I try to build the `firebase_snippets_app` locally, I get the following errors: ``` ^ symbol: method setAppCacheEnabled(boolean) location: class WebSettings Note: Some input files use or override a deprecated...

In my view, doc.id find automatically through db reference. Or should I insert manually?

These are meant for the Vertex AI for Firebase docs in https://firebase.google.com/docs/vertex-ai/get-started?platform=flutter They should match the Android ones in https://github.com/firebase/snippets-android/pull/553 and Swift in https://github.com/firebase/snippets-ios/pull/396 --- ~I had to remove the...

_Description of what this PR is changing or adding:_ _Issues fixed by this PR (if any): https://github.com/firebase/flutterfire/issues/13062 ## Risk Level - [x] No risk - [ ] Somewhat Risky -...

_Description of what this PR is changing or adding:_ Data Bundle sample for Firestore _Issues fixed by this PR (if any):_ ## Risk Level - [X] No risk - [...

## Risk Level - [ ] No risk - [ ] Somewhat Risky - [ ] High risk ## Pre-submit checklist - [ ] This PR follows the [Google Developer...

This PR addresses the confusion around enabling offline persistence for web platforms in the cloud_firestore package. ## Risk Level - [ ] No risk - [ ] Somewhat Risky -...

In the Flutter Firestore Plugin Using the following code: ```dart await db .enablePersistence(const PersistenceSettings(synchronizeTabs: true)); ``` Throws a warning saying enablePersistence is depreciated and should use persistenceEnabled. https://github.com/firebase/snippets-flutter/blob/0428b747c6033ef1f5e27d65e64bb6ed2d533bda/packages/firebase_snippets_app/lib/snippets/firestore.dart#L1072-L1077 Can the...