0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.