flutter_geetest_plugin 0.3.4 copy "flutter_geetest_plugin: ^0.3.4" to clipboard
flutter_geetest_plugin: ^0.3.4 copied to clipboard

outdated

Geetest(GT3Captcha) Flutter plugin(Geetest's CAPTCHA - a user-friendly CAPTCHA powered by AI. Protect your website and mobile apps against bot traffic. Start your free trial now!).

pub package Build Status

geetest_plugin #

Geetest Flutter plugin.

Screenshot #

Screenshot

Getting Started #

Basic function version, waiting for iteration.

Use this package as a library #

1. Depend on it #

Add this to your package's pubspec.yaml file:

dependencies:
  geetest_plugin: ^0.3.4

2. Install it #

You can install packages from the command line:

with Flutter:

$ flutter packages get

Alternatively, your editor might support flutter packages get. Check the docs for your editor to learn more.

3. Import it #

Now in your Dart code, you can use:

import 'package:geetest_plugin/geetest_plugin.dart';

USAGE #

  Future<void> getGeetest() async {
    String result;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      result = await GeetestPlugin.getGeetest('url: api1');
    } on PlatformException {
//      _json = 'Failed to get platform version.';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _json = result;
    });
  }

FAQ: #

  1. [!] The 'Pods-Runner' target has transitive dependencies that include static binaries:

commenting out use_frameworks

6
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Geetest(GT3Captcha) Flutter plugin(Geetest's CAPTCHA - a user-friendly CAPTCHA powered by AI. Protect your website and mobile apps against bot traffic. Start your free trial now!).

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_geetest_plugin