well_formed 0.3.6 well_formed: ^0.3.6 copied to clipboard
A form field package designed to relieve developers of much of the form-related coding. It provides field masking, validation, smart trimming, and more.
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 Dart Package Versioning.
[Unreleased] #
[0.3.5] - 2021-08-18 #
[0.3.4] - 2021-08-18 #
Added #
- HexField, a text form field for entering hexadecimal digits — 41.
Changed #
- The IntField constructor sets the inputFormatters to allow only digits and the plus '+' or minus '-' signs.
- IntField.pos constructor sets the inputFormatters to only allow digits and the plus '+' sign.
- IntField.neg constructor sets the inputFormatters to only allow digits and the minus '-' sign.
Fixed #
- some sections of the README file.
- a few unit tests.
[0.3.3] - 2021-08-17 #
[0.3.1] - 2021-08-12 #
[0.3.0] - 2021-08-10 #
Changed #
- update the version of the "Formdator" dependency to 0.10.0 — 19.
- DigitField: 21
BREAKING CHANGES.
- set the [inputFormatters] attribute to [FilteringTextInputFormatter.digitsOnly] and remove it from the constructors parameter list
- set the [keyboardType] to [TextInputType.number] and remove it from the constructors parameter list.
[0.2.0] - 2021-08-07 #
Added #
- CepField widget for CEP (Código de Endereçamento Postal) input values — 7.
- WellFormed, a convenient well-formed form widget!
- Several unit tests in addition to improvements to the existing ones — 15.
Changed #
- The description of this package.
Removed #
- The FormFieldTester class has been removed and the WellFormed class is its replacement. BREAKING CHANGE