Last updated:
0 purchases
flutter 2fa
Flutter 2FA #
** This is an unofficial SDK for flutter
🔐 This package to helps adds 2 Factor Authentiation in any flutter project with ease.
📸 Screen Shots #
🚀 How to Use plugin #
Launch Flutter 2FA with activate method in any button/onpressed action
import 'package:flutter_2fa/flutter_2fa.dart';
void launch() async {
await Flutter2FA().activate(
context: context,
appName: "Flutter 2FA", // your app ame
email: "[email protected]" // email of user to authenticate
);
}
copied to clipboard
Verify user authentication
import 'package:flutter_2fa/flutter_2fa.dart';
...
void verify() async {
await Flutter2FA().verify(context: context);
}
...
copied to clipboard
✨ Contribution #
PR's and suggestions are very much welcome.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.