flutter_gcaptcha_v3 0.0.5 copy "flutter_gcaptcha_v3: ^0.0.5" to clipboard
flutter_gcaptcha_v3: ^0.0.5 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,
          webViewColor: null,
          onTokenReceived: _onTokenReceived,
        ),
        ElevatedButton(
          onPressed: execute,
          child: const Text('submit'),
        )
      ],
    );
  }

  // After calling [RecaptchaHandler.executeV3()] you will receive the [token]
  // Verify your Token using the server
  _onTokenReceived(String token) {
    print("FINAL TOKEN===> $token");
  }

  // 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)

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, webview_flutter_plus

More

Packages that depend on flutter_gcaptcha_v3