slider_captcha 1.0.0 copy "slider_captcha: ^1.0.0" to clipboard
slider_captcha: ^1.0.0 copied to clipboard

slide captcha the same as binance, allow drag and drop for validation

SLIDER CAPTCHA #

Authentication by image

Install #

  • In your pubspec.yaml root add:

Demo #

Showscase gif

Code Example #

Slider Captcha verify with client

   SliderCaptcha(
          controller: controller,
          image: Image.asset(
            'assets/image.jpeg',
            fit: BoxFit.fitWidth,
          ),
          colorBar: Colors.blue,
          colorCaptChar: Colors.blue,
          onConfirm: (value) {
            Future.delayed(const Duration(seconds: 1)).then(
              (value) {
                controller.create();
              },
            );
          },
        ),

Slider Captcha verify with server:

    SliderCaptchaClient(
        provider: SliderCaptchaClientProvider(
            base64Image,
            base64Piece,
            coordinateY,
        ),
        onConfirm: (value) async {
            /// Can you verify captcha at here
            await Future.delayed(const Duration(seconds: 1));
            debugPrint(value.toString());
        },
    ),

How to implement server: reference:github

Thank you i5hi recommended and supported 'verify by server' feature.

For details refer to the discussion

Buy Me A Coffee

88
likes
140
pub points
90%
popularity

Publisher

verified publisherbrian98.com

slide captcha the same as binance, allow drag and drop for validation

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on slider_captcha