firedart 0.6.1 copy "firedart: ^0.6.1" to clipboard
firedart: ^0.6.1 copied to clipboard

outdated

An incomplete, dart-native implementation of the Firebase SDK.

example/main.dart

import 'dart:io';

import 'package:firedart/firedart.dart';

const apiKey = "Project Settings -> General -> Web API Key";
const projectId = "Project Settings -> General -> Project ID";
const email = "you@server.com";
const password = "1234";

Future main() async {
  FirebaseAuth.initialize(apiKey, VolatileStore());
  Firestore.initialize(projectId); // Firestore reuses the auth client

  var auth = FirebaseAuth.instance;
  // Monitor sign-in state
  auth.signInState.listen((state) => print("Signed ${state ? "in" : "out"}"));

  // Sign in with user credentials
  await auth.signIn(email, password);

  // Get user object
  var user = await auth.getUser();
  print(user);

  // Instantiate a reference to a document - this happens offline
  var ref = Firestore.instance.collection("test").document("doc");

  // Subscribe to changes to that document
  ref.subscribe().listen((document) => print("updated: $document"));

  // Update the document
  await ref.update({"value": "test"});

  // Get a snapshot of the document
  var document = await ref.get();
  print("snapshot: ${document["value"]}");

  auth.signOut();

  // Allow some time to get the signed out event
  await Future.delayed(Duration(seconds: 1));

  exit(0);
}
302
likes
0
pub points
95%
popularity

Publisher

verified publishercachapa.net

An incomplete, dart-native implementation of the Firebase SDK.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

fixnum, grpc, http, protobuf

More

Packages that depend on firedart