Skip to content

h2stdio/flutter_number_captcha

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flutter Number Captcha

Display and validate random number captcha

demo

Usage

To use this plugin, add flutter_number_captcha as a dependency in your pubspec.yaml file.

Example

Here are small examples that show you how to use the API.

Default

bool isValid = await FlutterNumberCaptcha.show(context);
// return true if entered number is right
// return false if dialog closed by user

Custom Property

bool isValid = await  FlutterNumberCaptcha.show(
	context,
	titleText: 'Enter correct number',
	placeholderText: 'Enter Number',
	checkCaption: 'Check',
);
// return true if entered number is right
// return false if dialog closed by user

Contributing to this plugin

If you would like to contribute to the plugin, check out our contribution guide.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 99.3%
  • Kotlin 0.7%