Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 650 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 650 Bytes

recaptcha_facade

Library to render and control recaptcha.

From authors of Jaguar.

Usage

import 'package:recaptcha_facade/recaptcha_facade.dart';

main() async {
  final recaptcha = await Recaptcha.create(
      '6Lf3HCkUAAAAAJ2mRonRdQ7Ma-k9Or9uj7lxRy7a', querySelector('#output'));
  recaptcha.onSuccess.listen(print);
}

Simple example

For a simple client-only example, check out this example.

Complete example

For a complete example with client, check out this example.