dash_validator 1.0.1 copy "dash_validator: ^1.0.1" to clipboard
dash_validator: ^1.0.1 copied to clipboard

A Dart validation library to simplify the use of validation, and used to validate fields and other things

Dash Validation #

Is a Dart package without dependencies created to provides a easy way to validate fields.

Features #

  • Interface to create custom validation;
  • Required valiadation;
  • Email validation;
  • MaxLength validation;
  • MinLength validation;
  • RangeLength validation;
  • RegExp validation;
  • Compare to another value validation;

Getting started #

  1. Add the package dependency to your project:
dependencies:
  # Use the latest version available. Any is just a placeholder
  dash_validator: any
  1. Import the package to the file that you need to use.

  2. Add to the place that you need to validate

TextFormField(
  decoration: InputDecoration(
    labelText: 'Email',
  ),
  validator: DashValidator.required().email().validate,
),
TextFormField(
  decoration: InputDecoration(
    labelText: 'Password',
  ),
  validator: DashValidator
    .required(errorMessage: 'Password ir required')
    .range(errorMessage: 'Field length must be between 2 and 5', maxLength: 5, minLength: 2)
    .validate,
),

Dash Validators #

We provides some initial validators, and you can contribute to growth together!

Class Shortcut Description
none .addMultiple([]) Ensures all classes that extends DashValidator is validated
none .addSingle() Ensures the class that extends DashValidator is validated
RequiredDashValidation .required() Ensures the value is not null or empty
EmailDashValidation .email() Ensures the value is a validly formatted email address
RegExpDashValidation .regExp() Ensures the value is validated by a custom Regular Expression
MaxLengthDashValidation .maxLength() Ensures the value length is lesser than the length informed
MinLengthDashValidation .minLength() Ensures the value length is bigger than the length informed
RangeDashValidation .range() Ensures the value length is between the length informed
CompareDashValidation .compare() Ensures the value is compared to another passed by parameter

Custom Validators #

The DashValidator supports custom validators being added through classes extending the DashValidatorValue<T>.

Example of Custom Validator #

class CustomDashValidator extends DashValidatorValue<String> {
  //Here you can set your error message
  @override
  final String errorMessage;

  CustomDashValidator({
    required this.errorMessage,
  });

  @override
  bool isValid(String? value) {
    if (value?.isEmpty ?? true) {
      return true;
    }

    //Here you can add the logic to know if your field is valid or not

    return false;
  }
}

...

void main() {
  // start app

  final valueToValidate = 'custom validation';

  final errorMessage = DashValidator()
                        .addSingle(validator: CustomDashValidator(errorMessage: 'My custom error message'))
                        .validate(valueToValidate)
} 

...

//If you are using Flutter, you can add directly to TextFormField

TextFormField(
  decoration: InputDecoration(
    labelText: 'Email',
  ),
  validator: DashValidator
              .required(errorMessage: 'Email is required')
              .email()
              .addMultiple(validators: [CustomDashValidator(errorMessage: 'My custom error message')])
              .validate
), //In multiple validation you can add multiple validation classes in the array of validators
5
likes
130
pub points
0%
popularity

Publisher

unverified uploader

A Dart validation library to simplify the use of validation, and used to validate fields and other things

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on dash_validator