slider_captcha 0.1.7 slider_captcha: ^0.1.7 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 #
Code Example #
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();
},
);
},
),