form_validators 0.0.4 copy "form_validators: ^0.0.4" to clipboard
form_validators: ^0.0.4 copied to clipboard

outdated

A basic validation interface for flutter forms.

Form Validator #

A library to validate form fields for Flutter framework

This library only for flutter framework.

to use the JS-based please see Web form validators (Under development yet)

Validators #

Here is a list of the validators currently available.

Validator Description
Contains(String seed, [String message]) check if the string contains the seed.
Equals(String seed, [String message]) check if the field value equal to a certain string
Required([String message]) Mark the field is required.
MaxLength(int limit, [String message]) Set the maximum amount of character.
MinLength(int limit, [String message]) Set the minimum amount of character.
Between(String message, {int max, int min}) Limit the field digits to be between limited range

it use MaxLength and MinLength validators.

the message argument is required here
Composs(String message, List validators) Composs multiple validator into one singular validator.

the message argument is required here
Email([String message, String regexp]) Indicate that the field should be an email

It uses a common regexp to validate the string, but you can use your own

the regexp is r"^[a-zA-Z0-9.]+@[a-zA-Z0-9]+\.[a-zA-Z]+"]
Pattern(String regexp, [String message]) check if the field value matches the pattern.

Usage #

Just use the validate function to execute the list of predefined validators

TextFormField(
    validator: validate([
	    Required('This field is required'),
	    Email('Please enter the email correctly'),
]))

and the validator function will be executed using either the global key of the Form widget or the Form Field, click Here for more information about flutter validation.

please note that the validators functions will be executed in the same order that was defined

the validators are simple functions that returns true when the value is not as supposed so you can build your validators the works the same as the predefined ones

 class CustomValidator implements IValidator {
	 final String message = 'Message to be used as error message';
	 CustomClass(this.message);
	 call(String value) {
		 return ("if meets my condition") ? false : true;
	}
}

also, you can always see the source code to learn more.

The last thing that you can use a 3rd lib to facilitate the process, you can see this one, here's one of it's function isDate() that validates if the string is date, because it's a function that returns boolean we can use it with our interface to form a validator function, like this:

 class IsDate implements IValidator {
	 final String message = 'Message to be used as error message';
	 IsDate(this.message);
	 call(String value) {
		 return isDate(value);
	}
}
	
TextFormField(
    key: myFormKey,
    validator: validate([
	    IsDate('Please enter correct date')
]))

Contributing #

Don't hesitate to open issues and make pull request to help improve this plugin.

Maintainers #

ezzabuzaid - (author) - ezzabuzaid@hotmail.com

Made with love #

This lib inspired by

https://www.npmjs.com/package/validator https://pub.dev/packages/validators

2
likes
0
pub points
40%
popularity

Publisher

unverified uploader

A basic validation interface for flutter forms.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on form_validators