validator_forge 1.1.0 copy "validator_forge: ^1.1.0" to clipboard
validator_forge: ^1.1.0 copied to clipboard

A validator package to ease flutter form validation handling.

Changelog #

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

1.0.0 - 2024-10-19 #

Added #

  • Initial release of Validator Forge package.

  • Implemented core validators for:

    • Required fields (Validators.required)
    • Email format validation (Validators.email)
    • Phone number validation (10 digits) (Validators.phone)
    • URL validation (Validators.url)
    • Custom regex pattern matching (Validators.matchRegex)
    • Password length validation (minimum 8 characters) (Validators.password)
    • Minimum length validation (Validators.minLength)
    • Maximum length validation (Validators.maxLength)
    • Numeric validation (Validators.number)
    • Date format validation (Validators.date)
    • Minimum numeric value validation (Validators.minimum)
    • Maximum numeric value validation (Validators.maximum)
    • Field matching (Validators.match)
  • Added ValidatorRegexPattern class for common regex patterns (email, URL, signed decimal).

  • Introduced validatorBuilder function to compose multiple validators.

Fixed #

  • N/A (Initial release)

Changed #

  • N/A (Initial release)
7
likes
125
points
9
downloads

Publisher

verified publisherhiteshpatel.tech

Weekly Downloads

A validator package to ease flutter form validation handling.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on validator_forge