formix_flutter 0.1.0
formix_flutter: ^0.1.0 copied to clipboard
Flutter adapters for the Formix validation ecosystem. Seamlessly integrate validators with TextFormField and other form widgets.
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.
0.1.0 - 2026-01-23 #
Added #
- Initial release of
formix_flutter - FieldValidator Extension:
toFieldValidator()- Convert Formix validators to Flutter'sFormFieldValidator- Support for custom error formatters
- Configurable null handling with
NullPolicy
- NullPolicy:
NullPolicy.skip- Skip validation for null values (returns null)NullPolicy.defaultValue(value)- Use default value for null inputsNullPolicy.error(error)- Return error for null inputs
- DebouncedValidator:
- Built-in debouncing for expensive async validators
- Configurable debounce duration
- Re-exports
formix_corefor convenience