otpless_flutter_web 0.0.16 otpless_flutter_web: ^0.0.16 copied to clipboard
Otpless Flutter Web support
This package supports the otpless_flutter web support. For more info please Visit OTPless
otpless_flutter_web #
Installation #
In your index.html
file, add the following code:
<div id="otpless-login-page">
<script src="https://otpless.tech/flutter.js"></script>
</div>
<script defer src="main.dart.js"></script>
In your pubspec.yaml
file, add the following dependency:
dependencies:
otpless_flutter_web: ^0.0.13
In your SignIn/SignUp
dart file, add the following code:
import 'package:otpless_flutter_web/otpless_flutter_web.dart';
final _otplessFlutterPlugin = Otpless();
//To you on tap function
_otplessFlutterPlugin.openLoginPage();