validatorless 1.2.2 copy "validatorless: ^1.2.2" to clipboard
validatorless: ^1.2.2 copied to clipboard

This package provides a means to validate text inputs on the flutter and was inspired by Yup

Validatorless #

Pub Version

This package provides a means to validate text inputs on the flutter and was inspired by Yup

Validatorless in pub.dev

how to use #

dependencies:
  # Use the latest version available. Any is just a placeholder
  validatorless: any
TextFormField(
  decoration: InputDecoration(
    labelText: 'User e-mail',
  ),
  validator: Validatorless.multiple([
     Validatorless.email('The field must be an email'),
     Validatorless.required('The field is obligatory')
  ]),
)

or use

TextFormField(
  decoration: InputDecoration(
    labelText: 'CPF',
  ),
  validator: Validatorless.cpf('CPF not is valid'),
)

Validatorless functions #

 Validatorless.required(String)
 Validatorless.email(String)
 Validatorless.min(int, String)
 Validatorless.max(int, String)
 Validatorless.between(int, int, String)
 Validatorless.number(String)
 Validatorless.cpf(String) 
 Validatorless.cnpj(String) 
 Validatorless.date(String) 
 Validatorless.compare(TextEditingController, String)
148
likes
120
pub points
95%
popularity

Publisher

unverified uploader

This package provides a means to validate text inputs on the flutter and was inspired by Yup

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on validatorless