maxzod / queen_validators

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Q U E E N ๐Ÿ‘‘

For More Features OUT-OF-THE-BOX (localization) see Official Documentation site

Validators ๐ŸŒ

Pub License: MIT issues Pull requests forks Starts style: lint codecov

Buy Me A Coffee

Usage

if you need

  • simple true of false function to validate a input
  • validate a normal flutter Form field
@override
Widget build(BuildContext context) {
return TextFormField(
     // use qValidator function and provider list of rules to apply on this field
    validator: qValidator([
      IsRequired(),
      IsOptional()
      IsEmail(),
      MinLength(8),
      MaxLength(30, "optionally you can override the failure if the validation fails"),
    ]),
  );
  }

customization

if you need to show a custom error message you can

  • use the rule constructor (scooped for a single rule)
  • use ValidatorsLocalization.on (scooped for the entire Type rules)
void main() {
    ValidatorsLocalization.on<IsRequired>((rule) => 'the new required message');
}
  • if you use queen all the rules are localized out of the box ๐ŸŽ !

About

License:MIT License


Languages

Language:Dart 76.8%Language:C++ 14.0%Language:CMake 6.8%Language:HTML 1.3%Language:C 0.6%Language:Swift 0.3%Language:Kotlin 0.1%Language:Objective-C 0.0%