slider_captcha

Creator: coderz1093

Last updated:

0 purchases

slider_captcha Image
slider_captcha Images

Languages

Categories

Add to Cart

Description:

slider captcha

SLIDER CAPTCHA #
Authentication by image
Install #

In your pubspec.yaml root add:

Demo #

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();
},
);
},
),
copied to clipboard
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());
},
),
copied to clipboard
How to implement server:
reference:github
Thank you i5hi recommended and supported 'verify by server' feature.
For details refer to the discussion

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.