fire_autho

Last updated:

0 purchases

fire_autho Image
fire_autho Images
Add to Cart

Description:

fire autho

Fire_Autho #
Firebase Authentication Manager #


Notice: This project is under development. It's unofficial. You can send pull request to contribute.
Features #
All features is avaible on Mobile and Web but I can't test on IOS.

Sign and login with email.
Sign in anonymously (can link with other credential).
Sign in with Google, Twitter and phone number.
Link multiple accounts.
Delete account.
Verify account.
Listen auth state with provider.

Instalization #

Initialize Firebase setup. Tutorial

index.html : #
<script src="https://www.gstatic.com/firebasejs/8.2.6/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.6/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.1.1/firebase-auth.js"></script>

<script>
var firebaseConfig = {
apiKey: "********",
authDomain: "******.firebaseapp.com",
projectId: "****",
storageBucket: "****.appspot.com",
messagingSenderId: "******",
appId: "********",
measurementId: "****"
};

firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>

copied to clipboard
You need to use ChangeNotifierProvider on top of the widget tree.
main.dart:
void main() {
WidgetsFlutterBinding.ensureInitialized();
runApp(ChangeNotifierProvider(create: (context) => AuthManager(), child: MyApp()));
}

class MyHomePage extends StatefulWidget {
AuthManager manager = AuthManager(); // Singleton class.

MyHomePage(){
manager.setTwitterConsumerKeys("consumer_key","consumer_secret_key");
// if you will use twitter sign in. you must call this function.
}
}
copied to clipboard
Setup for Google Sign In On Web #
Configure you project and google cloud api like in this video. Be sure you added local host on cloud.
<script src="https://apis.google.com/js/platform.js" async defer></script>
<meta name="google-signin-client_id" content="xxxxxxxxxx.apps.googleusercontent.com">
copied to clipboard
Example Usage #
All methods usages showed on example project.
onPressed: () async {
AuthResponse response = await manager.signInWithMailPass(
mailFieldController.text, passFieldController.text); // give mail and password.
// you can get manager with Provider.of<AuthManager>(context) too.
if (response.status == Status.Failed) {
showSnack(response); // show fail message or do something to handle.
}
},
copied to clipboard
--
AuthResponse response = await Provider.of<AuthManager>(context).signInWithGoogle();
print(response.message + response.code); // response.status can be Failed, Successed, Waiting
copied to clipboard
Phone Sign in :
AuthResponse response = await Provider.of<AuthManager>(context, listen:false).signInWithPhone(phoneNumberString, context);
// this will send a sms. if this succesed, you get response.type == Status.Waiting not Status.Successed. Operation will finish when you confirm verification sms.


AuthResponse response = await Provider.of<AuthManager>(context, listen:false).verifyPhoneSignForWeb( _smsController.text);
// call this when you get the sms code. I use in button onclick.
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.