Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/BrianTV98/slider_captcha
https://github.com/BrianTV98/slider_captcha
Last synced: about 3 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/BrianTV98/slider_captcha
- Owner: BrianTV98
- License: mit
- Created: 2021-11-23T17:50:56.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-12T13:56:21.000Z (about 1 year ago)
- Last Synced: 2024-09-25T09:31:03.312Z (about 2 months ago)
- Language: Dart
- Size: 1.28 MB
- Stars: 34
- Watchers: 2
- Forks: 16
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
## SLIDER CAPTCHA
Authentication by image## Install
* In your `pubspec.yaml` root add:## Demo
![Showscase gif](https://github.com/BrianTV98/slider_captcha/blob/main/demo/slider_captcha.gif)
## Code ExampleSlider 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](https://github.com/BrianTV98/slider_captcha_server/tree/trunk)Thank you [i5hi](https://github.com/i5hi) recommended and supported 'verify by server' feature.
For details refer to the [discussion](https://github.com/BrianTV98/slider_captcha/discussions/28)