flutter_recaptcha_v2_compat 1.0.5 copy "flutter_recaptcha_v2_compat: ^1.0.5" to clipboard
flutter_recaptcha_v2_compat: ^1.0.5 copied to clipboard

Flutter plugin for Google ReCaptcha V2 – Simplify captcha integration in your Flutter app effortlessly.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_recaptcha_v2_compat/recaptcha_v2.dart';

void main() => runApp(MyApp());

const TAG = 'ReCaptchaV2';

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 StatelessWidget {
  MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(title),
      ),
      body: Stack(
        children: <Widget>[
          Center(
            child: SingleChildScrollView(
              child: Column(
                mainAxisAlignment: MainAxisAlignment.center,
                children: [
                  const SizedBox(height: 24),
                  RecaptchaV2Button(
                    apiKey: "6LfXp1UpAAAAAEku9BSeBt6JJxXrlvtYjh--X4D7",
                    apiSecret: "6LfXp1UpAAAAAIFVynIPkooVWZi5qN8u16SYJTVt",
                    pluginURL:
                        'https://recaptcha-flutter-plugin.firebaseapp.com/',
                    isErrorShowing: false,
                    onVerified: (val) {
                      print('$TAG: Verified $val');
                    },
                  ),
                ],
              ),
            ),
          ),
        ],
      ),
    );
  }
}
5
likes
140
pub points
86%
popularity

Publisher

unverified uploader

Flutter plugin for Google ReCaptcha V2 – Simplify captcha integration in your Flutter app effortlessly.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

auto_route, enum_annotation, flutter, flutter_bloc, flutter_svg, freezed_annotation, http, intl, provider, vector_graphics, webview_flutter

More

Packages that depend on flutter_recaptcha_v2_compat