recaptchav2_plugin 1.0.0
recaptchav2_plugin: ^1.0.0 copied to clipboard
A Flutter plugin for Google ReCAPTCHA V2. This plugin requires Webview to use Google ReCaptcha.
import 'package:flutter/material.dart';
import 'package:recaptchav2_plugin/recaptchav2_plugin.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Google ReCaptcha Demo'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
String verifyResult = "";
RecaptchaV2Controller recaptchaV2Controller = RecaptchaV2Controller();
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Stack(
children: <Widget>[
Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
RaisedButton(
child: Text("SHOW ReCAPTCHA"),
onPressed: () {
recaptchaV2Controller.show();
},
),
Text(verifyResult),
],
),
),
RecaptchaV2(
apiKey: "6Lc_erMUAAAAAFnlJh8hYO7Uj9CZW95vTcdzKALA",
controller: recaptchaV2Controller,
response: (token){
setState(() {
verifyResult = token;
});
},
),
],
),
);
}
}
copied to clipboard