flutter_gcaptcha_v3 0.0.4 copy "flutter_gcaptcha_v3: ^0.0.4" to clipboard
flutter_gcaptcha_v3: ^0.0.4 copied to clipboard

Implementation of Google reCAPTCHA v3 for Flutter (IOS/Android)

example/main.dart

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();
}
20
likes
0
pub points
87%
popularity

Publisher

unverified uploader

Implementation of Google reCAPTCHA v3 for Flutter (IOS/Android)

Homepage

License

unknown (license)

Dependencies

flutter, webview_flutter_plus

More

Packages that depend on flutter_gcaptcha_v3