easy_firebase_auth

Creator: coderz1093

Last updated:

0 purchases

easy_firebase_auth Image
easy_firebase_auth Images
Add to Cart

Description:

easy firebase auth

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(),
)),
);
}
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.