Last updated:
0 purchases
phone email auth
phone_email_auth plugin #
Flutter plugin for authenticating phone number. this plugin send OTP to mobile numbers and verify it and return verified mobile number to user.
Getting Started #
Install
dependencies:
phone_email_auth: ^0.0.6
copied to clipboard
Import
import 'package:phone_email_auth/phone_email_auth.dart';
copied to clipboard
Initialize phone email plugin
PhoneEmail.initializeApp(clientId: 'YOUR_CLIENT_ID');
copied to clipboard
Note: #
clientId : Set clientId which you obtained from Profile Details section of Admin Dashboard of Phone Email.
Add Phone Email Login Button #
child: PhoneLoginButton(
borderRadius: 8,
buttonColor: Colors.teal,
label: 'Sign in with Phone',
onSuccess: (String accessToken, String jwtToken) {
if (accessToken.isNotEmpty) {
setState(() {
userAccessToken = accessToken;
jwtUserToken = jwtToken;
hasUserLogin = true;
});
}
},
)
copied to clipboard
The PhoneLoginButton will return the accessToken and jwtToken, which are necessary for obtaining the verified phone number.
Get Verified phone number: #
Once you've obtained the accessToken, get verified phone number by calling the getUserInfo() function. Use the following code snippet to retrieve the verified phone number and user details.
PhoneEmail.getUserInfo(
accessToken: userAccessToken,
clientId: phoneEmail.clientId,
onSuccess: (userData) {
setState(() {
phoneEmailUserModel = userData;
var countryCode = phoneEmailUserModel?.countryCode;
var phoneNumber = phoneEmailUserModel?.phoneNumber;
var firstName = phoneEmailUserModel?.firstName;
var lastName = phoneEmailUserModel?.lastName;
// Use this verified phone number to register user and create your session
});
},
);
copied to clipboard
Display Email Alert: #
Integrate an email alert icon on your screen for a successfully authenticated user. Use the following code snippet to fetch the unread email count and display the email icon.
floatingActionButton: hasUserLogin
? EmailAlertButton(
jwtToken: jwtUserToken,
) : const Offstage(),
);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.