Last updated:
0 purchases
fire flutter db
FLUTTER FIRE 🔥 #
This Flutter package, named flutter_fire, provides convenient and streamlined access to Firebase Authentication and Firestore operations within your Flutter applications. It simplifies tasks such as user authentication via email/password and Google Sign-In, as well as common Firestore operations like retrieving single documents, fetching all documents in a collection, and streaming data updates. With its intuitive methods, flutter_fire aims to enhance your development experience by seamlessly integrating Firebase services into your Flutter projects.
Features #
Authentication:
Sign in with email and password.
Create a new user with email and password.
Sign in with Google authentication.
Firebase Firestore Operations:
Find a single document by ID.
Find all documents in a collection.
Get a stream of data from a Firestore collection.
Retrieve data from a Firestore collection.
Find a list of documents present in a list of document IDs and return them as a stream.
Convenience Features:
Access to the current user.
Stream for authentication state changes.
Getting started #
Prerequisites #
Flutter Setup: Ensure you have Flutter installed on your system. You can find installation instructions on the official Flutter website.
Firebase Account: Create a Firebase account if you haven't already. You can sign up for free on the Firebase website.
@echo off
echo Firebase Login checking...
call firebase login
echo Adding Firebase plugins to the Flutter project...
call firebase init
echo Adding Firebase plugins to the Flutter project...
call flutter pub add firebase_core firebase_auth cloud_firestore
echo Running Flutter project...
call flutter run
copied to clipboard
To use this script, create a new text file in your project directory, name it firebase_init.bat, and paste the above code into it. Then, you can simply run this file from the command line to set up Firebase and add the necessary plugins to your Flutter project. Make sure you have both the Firebase CLI and Flutter installed and configured on your system before running this script.
Usage #
import 'package:flutter_fire/flutter_fire.dart';
copied to clipboard
1. Authentication :
// Initialize FlutterFire instance
FlutterFire flutterFire = FlutterFire();
// Sign in with email and password
await flutterFire.signInWithEmailAndPassword(email: '[email protected]', password: 'password');
// Create a new user with email and password
await flutterFire.createUserWithEmailAndPassword(email: '[email protected]', password: 'newpassword');
// Sign in with Google authentication
await flutterFire.signInWithGoogle();
copied to clipboard
2. Firestore Operations :
// Get a single document by ID
Map<String, dynamic>? document = await flutterFire.findOne('collectionName', 'documentId');
// Get all documents in a collection
List<dynamic>? documents = await flutterFire.findAll('collectionName');
// Stream data from a Firestore collection
Stream<QuerySnapshot<Map<String, dynamic>>> stream = flutterFire.getStreamData('collectionName');
// Retrieve data from a Firestore collection
Map<String, dynamic> data = flutterFire.getData('collectionName');
// Find documents present in a list of document IDs and return them as a stream
Stream<List<Map<String, dynamic>>> docStream = flutterFire.findStreamContainingList('collectionName', 'documentId', ['id1', 'id2']);
copied to clipboard
3. Convenience Features:
// Access the current user
User? currentUser = flutterFire.currentUser;
// Stream for authentication state changes
Stream<User?> authStream = flutterFire.authStateChanges;
copied to clipboard
These examples showcase how to perform common authentication and Firestore operations using the flutter_fire package, making it easier for developers to integrate Firebase services into their Flutter applications.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.