Skip to content
This repository has been archived by the owner on Feb 21, 2021. It is now read-only.

Releases: matanlurey/angular_fire

0.2.1

01 Jun 03:17
Compare
Choose a tag to compare

0.2.1

  • Add an option to add additional authorization scopes to googleSignIn:
// Authenticate and allow read-only access to Google Calendar.
final user = await firebaseAuth.googleSignIn(
  scopes: [
    'https://www.googleapis.com/auth/calendar.readonly',  
  ],
);

if (user != null) {
  // You have access!
}

0.2.0

01 Jun 00:43
Compare
Choose a tag to compare

0.2.0

  • Fixed a bug that flashed signed off content before loading.
  • Changed the default behavior of Google sign-in to prompt for account:
abstract class FirebaseAuth {
  Future<FirebaseUser> googleSignIn({bool prompt: true});
}

0.1.1

30 May 07:04
Compare
Choose a tag to compare

0.1.1

  • Removed a print statement that was always occurring.
  • Added a high-level FirebaseAuth class, and Google sign-in.
  • Added IfFirebaseAuthDirective.

0.1.0

30 May 02:37
Compare
Choose a tag to compare

0.1.0

  • Initial commit of GoogleSignInComppnent.