flutter_gcaptcha_v3 0.0.4 flutter_gcaptcha_v3: ^0.0.4 copied to clipboard
Implementation of Google reCAPTCHA v3 for Flutter (IOS/Android)
import 'package:flutter/material.dart';
import 'package:flutter_gcaptcha_v3/recaptca_config.dart';
import 'package:flutter_gcaptcha_v3/web_view.dart';
void main() {
/// Initialize your data site key
RecaptchaHandler.instance.setupSiteKey(dataSiteKey: 'YOUR-DATA-SITE-KEY');
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'My Awesome App',
theme: ThemeData(
useMaterial3: true,
colorScheme: ColorScheme.fromSeed(seedColor: Colors.purple),
),
home: const MyHomePage());
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key}) : super(key: key);
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Column(
children: [
ReCaptchaWebView(
width: 200,
height: 22,
onTokenReceived: (String token) {
/// After calling [RecaptchaHandler.executeV3()] you will receive the [token]
/// Verify your Token using the server
print("FINAL TOKEN===> $token");
},
),
ElevatedButton(
onPressed: execute,
child: const Text('submit'),
)
],
);
}
/// Execute the Recaptcha V3 using this method call
void execute() => RecaptchaHandler.executeV3();
}