easy_firebase_auth 3.2.0 copy "easy_firebase_auth: ^3.2.0" to clipboard
easy_firebase_auth: ^3.2.0 copied to clipboard

Manage authentication with firebase in an extremely simple way

easy_firebase_auth #

Add Firebase authentication to your Flutter app with a few lines of code.

Supported Firebase authentication methods #

  • Sign in with email
  • Sign in with Google
  • Sign in with Apple
  • Sign in Anonymous

Basic usage #

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return AuthProvider(
      autoSignInAnonymously: false,
      splashScreenDurationMillis: 500,
      child: MaterialApp(
        home: AuthManagerWidget(
        splashScreen: SplashScreen(),
        loggedScreen: LoggedScreen(),
        notLoggedScreen: NotLoggedScreen(),
      )),
    );
  }
}
6
likes
70
pub points
20%
popularity

Publisher

unverified uploader

Manage authentication with firebase in an extremely simple way

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

crypto, firebase_auth, flutter, flutter_markdown, google_sign_in, provider, sign_in_with_apple, url_launcher

More

Packages that depend on easy_firebase_auth