Releases: flutter-form-builder-ecosystem/flutter_form_builder
Releases · flutter-form-builder-ecosystem/flutter_form_builder
v3.13.4
- Fixed bug where
CountryPicker.onSaved
breaks if value is null
- Fixed bug where
initialValue
not saved
- Fix for label overflows in
RadioGroup
& CheckboxGroup
- Upgrade to latest
flutter_chips_input
. Fixes bugs in Flutter pre-release channels
v3.13.3
- Fix bug where CountryPicker still works in readOnly. Closes #413
- Fixed bug where
onChanged
is not fired in CountryPicker. Closes #424
- Allow null
initialValue
for CountryPicker. Closes #421
- Minor improvements for ImagePicker on web platform. Closes #414
- Added video tutorial reference to README
v3.13.2
- Added
defaultImage
attribute to FormBuilderImagePicker
, acts as placeholder. Courtesy luwenbin8023
- Fix bug in
FormBuilderCheckboxGroup
where InputDecoration
isn't enabled. Closes #405
- Fix issue where form's initialValue would potentially be ignored. Fixes #341
v4.0.0-beta.1
- Flutter v1.20 improvements
- Fix bug in
FormBuilderValidators.numeric
if valueCandidate is null
- Renamed
pattern
validator to match
.
- Rename
requireTrue
validator to equal
to allow equality check with other types. Closes #397
- Fix bug in parsing phone number from
FormBuilderPhoneField.initialValue
v3.13.1
- Added default value to
timePickerInitialEntryMode
to be consistent with showTimePicker
API. Closes #403
- Ensure
TextEditingController
s aren't unused and are properly disposed.
- Use latest version of
flutter_chips_input
with fix for "Bad UTF-8 found..."
v3.13.0
- Added support for Flutter v1.20
v3.12.2
Convert FormBuilderRating value to double for RatingBar. Closes #392
v3.12.1
- Deprecate
FormBuilderRadio
in favour of FormBuilderRadioGroup
- Deprecate
FormBuilderCheckbox
in favour of FormBuilderCheckboxGroup
- Fix bug
"NoSuchMethodError: invalid member on null: 'initialValue'"
when fields not wrapped in FormBuilder
v3.12.0
- Added new field
FormBuilderCheckboxGroup
. Closes #188
- Removed
group_radio_button
library dependency, made own implementation with label fix. Closes #376, #335
- Add web support for ImagePicker. Courtesy of vin-fandemand
- Fixed bug where value within
TextEditingController
ignored in FormBuilderTypeahead
v3.11.6
- Upgraded dependencies
- Fixed error '
The getter 'initialValue' was called on null
' if no FormBuilderState
ancestry. Closes #364
- Fixed issue where DropdownButton
hint
overlaps with labelText
. Closes #372
- Fix '
initialEntryMode != null
' assertion in DateTimePicker. Closes #373