flutter_form_builder 4.0.0-alpha.8 flutter_form_builder: ^4.0.0-alpha.8 copied to clipboard
Package to build Material Form with fields like TextField, DropDown, Switches etc. with ability to create custom FormFields and composability and reuse validation functions.
[4.0.0-alpha.8] - 23-Jul-2020 #
- Fixed erratic keyboard behavior on
FormBuilderTextField
- Added documentation for
FormBuilder
&FormBuilderField
attributes - Fixed issue where
FormBuilderRadioGroup
not submitting value
[4.0.0-alpha.7] - 22-Jul-2020 #
- Added new field -
FormBuilderCheckboxGroup
. Closes #188, - New
FormBuilderRadioGroup
implementation similar toFormBuilderCheckboxGroup
. Fixes issue whereFormBuilderFieldOption.child
is ignored Closes #335 - Set FocusTraversalGroup policy
- Fixed bug where TextField where
initialValue
fromFormBuilder
is ignored. Closes #370
[4.0.0-alpha.6] - 20-Jul-2020 #
- Added focusNode to all fields.
- Attempted tab/next support - work in progress
- Request Focus to Field when change is attempted.
- Include guide to programmatically inducing errors to README. Closes #123
- Fixed bug in Localization where
Locale.countrycCode
isnull
. Closes #369 - Added more options to DatePicker for showDatePicker() Flutter function
- Rename
updateFormAttributeValue
tosetInternalAttributeValue
to avoid confusion
[4.0.0-alpha.5] - 08-Jul-2020 #
- Improvements to dirty check for FormBuilderField - fixes autovalidate only when dirty
[4.0.0-alpha.4] - 04-Jul-2020 #
- Added static getter for FormBuilderLocalizations delegate
- Fix issue where setting app localization is required for built-in validation to work
[4.0.0-alpha.3] - 01-Jul-2020 #
- Localize validation error texts
- Dropped
country_picker
package forcountry_code_pickers
in PhoneField which supports localized countries - Allow setting of
InputDecoration.errorText
which invalidates the field. Allows external validation like server validation - ColorPicker show Hexadecimal code in TextField instead of
Color.toString()
- Do away with validators attribute, use normal validator instead of list of validators
- Added
FormBuilderValidators.compose()
which composes multipleFormFieldValidator
s into one - ColorPicker, DateRangePicker, DateTimePicker - set TextField readOnly to true. Prevents keyboard popup
- Improvements to example: break down to several pages; also show code in example app
[3.11.0] - 14-Jun-2020 #
- Added
FormBuilderRadioGroup
field - Revised ImageSourceSheet to use the new Image Picker api, and added support for web platform.
- Add
textAlignVertical
attribute option to FormBuilderTextField - Included additional configuration options to the FormBuilderImagePicker:
maxHeight
,maxWidth
,imageQuality
,preferredCameraDevice
&maxImages
- Added
alwaysUse24HourFormat
option to DateTimePicker. Closes #297 - Revert focus to PhoneField TextField after country selected. Closes #302
- Validate PhoneField only if phone number has value, not country only
- Bumped up flutter_typeahead version. Contains keyboard visibility fix
- Bumped up flutter_chips_input version with multiple fixes and improvements.
- Show Country flag to PhoneField
[3.10.1] - 17-May-2020 #
- Added delete icon on selected images in ImagePicker instead of non-intuitive long-press to delete. Closes #278
- Added contentPadding option to Checkbox, CheckboxList, Radio and Switch to allow spacing of items in list options. Closes #280
- Fix bug "The getter 'isNotEmpty' was called on null" in PhoneField
[3.10.0] - 15-May-2020 #
- Added
FormBuilderCountryPicker
andFormBuilderPhoneField
. Good work by Furkan KURT - Set
readOnly
prop tofalse
in ColorPicker, DateRangePicker & DateTimePicker TextFields - prevents keyboard popping up. Closes #210 - Fixed allowEmpty bug in
minLength
validator. Closes #259 - Allow user to set iconColor for ImagePicker due to issue with dark mode. Closes #268
- Use signature package instead of self-maintained Widget
- Use
ObjectKey
s to enforce rebuild after reset - Added
decoration
attribute to ImagePicker, deprecatedlabelText
- Remove deprecation for
initialTime
&initialDate
in DateTimePicker
Unreleased #
- Add
contentPadding
to allListTile
-based fields
[4.0.0-alpha.2] - 06-May-2020 #
- All form reset issues are fixed - I hope ;-).
UniqueKey()
used where necessary FormBuilderField
to be used base to create custom fields. Removed unusedFormBuilderCustomField
- Add to
FormBuilderField.onReset
callback - to enable user to react to resetting by changing the UI to reflect reset - Fixed bug where setting form-wide
readOnly
to true doesn't affect fields - On field reset, use calculated
initialValue
instead of widget provided since it may have been set by theFormBuilder
- Use signature: ^3.0.0 package instead of self-maintained - comes with breaking changes.
- Added option for user to set own
border
forFormBuilderSignaturePad
- Remove deprecation for
initialDate
andinitialTime
forDateTimePicker
- user may prefer to set own
[4.0.0-alpha.1] - 04-May-2020 #
- Complete rewrite of package implementation
- Removed a few deprecations
- Renamed
FormBuilderRate
toFormBuilderRating
[3.9.0] - 03-May-2020 #
- New field type
FormBuilderImagePicker
courtesy of Gustavo Vítor - Switched rating package from sy_flutter_widgets to rating_bar with more configuration options
- Switched rating package from sy_flutter_widgets to rating_bar with more configuration options
- Added option to
showCheckmark
for FormBuilderFilterChip, along with other options. Closes #260 - Added option to
allowEmpty
inminLength
andmaxLength
validations. Closes #259 - Fixed bug where
locale
,textDirection
,useRootNavigator
&builder
not passed down toshowDatePicker()
andshowTimePicker()
- Assert
initialValue
isnull
orcontroller
isnull
forFormBuilderTextField
. Closes #258
[3.8.3] - 15-Apr-2020 #
- Fix bug where
onChange
in FormBuilderDateTimePicker doesn't fire when field is cleared. Closes #254 - Fix
The method 'dispose' was called on null.
issue in FormBuilderTypeAhead. Closes #256 - Bumped up flutter_chips_input to v1.8.0 from v1.7.0
[3.8.2] - 27-Mar-2020 #
onTap
callback added toFormBuilderTextField
- Link to form_builder_map_field added to README
- Improvements to README
[3.8.1] - 09-Mar-2020 #
- Only enable corresponding TextField when ColorPicker is not readOnly
- Fixed bug where
FormBuilderTouchSpin
aka Stepper not being disabled when in readOnly - Bumped up color_picker to 0.3.2, added new ColorPickerType -
SliderPicker
- Export
flutter_typeahead
package so user gets accessTextFieldConfiguration
class - Deprecate
validator
attribute in FormBuilderDateTimePicker, onlyvalidators
should be used - When TimePicker is cancelled, return original value instead of null
- Fix bug where initialTime for TimePicker defaults to 12:00, use currentTime. Closes #234
[3.8.0+1] - 17-Feb-2020 #
- Fix bug where Changing readOnly of
FormBuilder
does not change readOnly ofFormBuilderDateTimePicker
. Closes #179
[3.8.0] - 12-Feb-2020 #
- NEW FIELD TYPES:
FormBuilderChoiceChip
- Creates a chip that acts like a radio button. Courtesy Cesar FloresFormBuilderFilterChip
- Creates a chip that acts like a checkbox. By Cesar Flores. Again!FormBuilderColorPicker
with help from BenjaminFormBuilderTouchSpin
replaced the confusingly namedFormBuilderStepper
which is now deprecated.
- Fix some inconsistencies in controller and focus node disposal. Courtesy of Thomas Järvstrand. Should close #230
- Bumped up
flutter_typeahead
from1.7.0
to1.8.0
[3.7.3] - 15-Jan-2020 #
- Bumped up
intl
,datetime_picker_formfield
&flutter_chips_input
. Closes #204, #207, #211, #215. - Fixed deprecation errors
[3.7.2] - 10-Dec-2019 #
- Fix email validator: Trim white-space before validation
- Return Form's value state with all fields defined in initialValue
[3.7.1] - 6-Dec-2019 #
- Use
num
forFormBuilderStepper
instead ofdouble
to allow for eitherint
ordouble
[3.7.0] - 5-Dec-2019 #
- Included
onSaved
callback to all fields. Closes #175 - Added
Key
option to all fields to make testing possible - Fixed bug where custom controller not working in TypeAhead. Closes #144
- Fix issue where
FormBuilderDateRangePicker
ignoresinitialFirstDate
andinitialLastDate
- Fixed bug where readOnly not working in FormBuilderDateTimePicker. Closes #179
- Allow double
values
forFormBuilderStepper
. Closes #182 - Only include clear icon next to DropdownButton if the value is not
null
- Revert
intl
, upgradeflutter_chips_input
&datetime_picker_formfield
- due incompatibilities. Closes #183, #185
[3.6.1] - 6-Nov-2019 #
- Fixed bug caused by dropping unimplemented attribute
onChipTapped
offlutter_chips_input
. Closes #168
[3.6.0] - 4-Nov-2019 #
- Added clear option to FormBuilderDropdown - set
allowClear
to true. Closes #148 - Default
contentPadding
andborder
attributes removed from CheckboxList, Radio and SegmentedControl list. Closes #160 - Added
numberFormat
attribute to Slider. Closes #156 - Add error text to date range picker. Thanks to ffpetrovic
- Fixed bug where pushing cancel on timePicker causes crash. Thanks to ayushin
- Fixed bug where Switch doesn't obey initialValue from FormBuilder. Closes #159
- Fixed bug where FormBuilderDropdown shows value instead of label when disabled/readOnly. Closes #154
- Fixed bug where FormBuilderDateTimePicker value is parsed from TextField string. Closes #164
- Added default TextInputConfiguration options for ChipsInput
- Fix example project - AndroidX compatibility. Thanks to prasadsunny1
- Bumped up
flutter_typeahead
1.6.1 -> 1.7.0
[3.5.5] - 3-Oct-2019 #
- Bumped up
flutter_chips_input
version from 1.3.1 to 1.5.1 - AndroidX migration for example app
[3.5.4] - 16-Sep-2019 #
- Fix dependency mismatch for
intl
withflutter_localizations
from sdk - Bumped up
datetime_picker_formfield
dependency version
[3.5.3] - 11-Sep-2019 #
- Fixed DateTimePicker bug: '
DateTime is not a subtype of type TimeOfDay
' when Input type is Time only. Closes #131
[3.5.2] - 03-Sep-2019 #
- Re-introduced
onSuggestionSelected
option in TypeAhead field
[3.5.1] - 02-Sep-2019 #
- Hack to avoid manual editing of date - as is in DateTimeField library
[3.5.0] - 30-Aug-2019 #
- NEW FIELD TYPE:
FormBuilderDateRangePicker
- New method
saveAndValidate
method toFormBuilder
- Ability to use custom data types in TypeAhead field instead of just String
FormBuilderDateTimePicker
fixes- Fixed bug where currently selected date is cleared when DateTimePicker dialog is shown
- Also fixed bug where currently selected date not used as initial date in DateTimePicker dialog
initialTime
andinitialDate
deprecated - brings confusion withinitialValue
. Selected date/time or current date/time will be used instead
- BREAKING CHANGE: Changed type of
resetIcon
in DateTimePicker fromIconData
toIcon
[3.4.1] - 21-Aug-2019 #
- Fixed bug in
FormBuilderDateTimePicker
whereinitialValue
defaults to null
[3.4.0] - 21-Aug-2019 #
- Converted
FormBuilderFieldOption
to Widget withchild
attribute - allows option to be customized/styled - Fixed bug in
FormBuilderCheckboxList
where new items cannot be added - Allow
null
value on checkbox iftristate
is enabled - Adding InputBorder on
FormBuilderDropdownField
now possible - Fixed bug where initial date not shown for
FormBuilderDateTimePicker
[3.3.4] - 08-Aug-2019 #
- Added
initialValue
field toFormBuilderCustomField
[3.3.3] - 08-Aug-2019 #
- Attempt to fix issue where user is required to manually edit
FormBuilderDateTimePicker
if not empty - instead of presenting Date/Time Picker
[3.3.2] - 07-Aug-2019 #
- Upgrade dependency
datetime_picker_formfield
from v0.4.0 to 1.0.0-pre.2 (aka v0.4.1) - Removed
editable
option fromFormBuilderDateTimePicker
- removed from dependencydatetime_picker_formfield
[3.3.1] - 28-Jul-2019 #
- Fixed bugs in
FormBuilderDateTimePicker
- Minor improvements to documentation
[3.3.0] - 28-Jul-2019 #
- New Feature: You can now set
initialValue
forFormBuilder
- Accepts aMap<String, dynamic>
where keys areattribute
s and the values areinitialValue
s for corresponding fields - New Field:
FormBuilderRangeSlider
- Compatibility with newly released Flutter version
1.7.*
Breaking change:
Renamed occurrences ofreadonly
toreadOnly
to fit naming conventions- Updated
datetime_picker_formfield
to version0.4.0
from0.2.0
- Added more attribute options for different fields
[3.2.9] - 20-Jul-2019 #
- Added
borderColor
,selectedColor
,pressedColor
,textStyle
options toFormBuilderSegmentedControl
forCupertinoSegmentedControl
customization
[3.2.8] - 12-Jul-2019 #
- Added
activeColor
,checkColor
,materialTapTargetSize
&tristate
options toFormBuilderCheckbox
andFormBuilderCheckboxList
for checkbox customization
[3.2.7] - 06-Jul-2019 #
- Fixed bug where
valueTransformer
s not working
[3.2.6] - 06-Jul-2019 #
- If disabled dropdown has value, show value instead of
disabledHint
[3.2.5] - 05-Jul-2019 #
- Fixed Stack Overflow bug in
setAttributeValue
function
[3.2.4] - 03-Jul-2019 #
- Fixed issue in saving form attribute values - Credit Caciano Kroth & eltonmorais
[3.2.3] - 25-Jun-2019 #
- Allow
readonly
attribute for fields to be changed at runtime. Credit Daniel Acorsi. Closes #75
[3.2.2] - 22-Jun-2019 #
- Bumped up
flutter_chips_input
from v1.2.0 to 1.3.0
[3.2.1] - 22-Jun-2019 #
- Add missing attributes for
FormBuilderSlider
to customizeSlider
Widget includingactiveColor
,inactiveColor
,onChangeStart
,onChangeEnd
,label
andsemanticFormatterCallback
. Closes #80. - Add support for
underline
toFormBuilderDropdown
. Credit Jordan Nelson. - Minor fixes to README
[3.2.0] - 07-Jun-2019 #
- Bumped up
flutter_typeahead
from v1.5.0 to 1.6.1 - Bumped up
datetime_picker_formfield
from v0.1.8 to 0.2.0
[3.1.3] - 06-Jun-2019 #
[3.1.2] - 27-May-2019 #
- Attempted fix for
FormBuilderTextField
retaining focus even after moving to other fields causing the UI to jump back to the TextField - Improved documentation for
FormBuilderCustomField
[3.1.1] - 16-May-2019 #
- Fixed sample code in README for example project
- Bumped up
flutter_typeahead
from v1.4.0 to 1.5.0
[3.1.0] - 15-May-2019 #
- Added
leadingInput
option for CheckboxList, Checkbox and Radio - Allows the option to have the input before its label (left). Courtesy of Sven Schöne
[3.0.1] - 28-Apr-2019 #
- Fixed bug in where
focuNode
forFormBuilderTextField
is ignored. Closes #53 - Fixed bug in where
textEditingConfiguration
forFormBuilderTypeAhead
ignored
[3.0.0] - 24-Apr-2019 #
- Complete rewrite of the package - stateful field widgets
FormBuilderCheckbox
- Single Checkbox fieldFormBuilderCheckboxList
- List of Checkboxes for multiple selectionFormBuilderChipsInput
- Takes a list of Flutter Chip as inputsFormBuilderDateTimePicker
- For Date, Time and DateTime inputFormBuilderDropdown
- Allow selection of one value from a list as a DropdownFormBuilderRadio
- Allow selection of one value from a list of Radio WidgetsFormBuilderRate
- For selection of a numerical value as a ratingFormBuilderSegmentedControl
- For selection of a value from theCupertinoSegmentedControl
as an inputFormBuilderSignaturePad
- Presents a drawing pad on which user can doodleFormBuilderSlider
- For selection of a numerical value on a sliderFormBuilderStepper
- Selection of a number by tapping on a plus or minus symbolFormBuilderSwitch
- On/Off switchFormBuilderTextField
- For text input. Allows input of single-line text, multi-line text, password, email, urls etc by using different configurations and validatorsFormBuilderTypeAhead
- Auto-completes user input from a list of items
- New
FormBuilderCustomField
to create of customFormField
s - New attribute
validators
allows composability and reusability of differentFormFieldValidator
functions that do different validations - New Feature
FormBuilderValidators
comes with common validation functionality options such as: required, min, max, minLength, maxLength, email, url, credit card etc. - Added
valueTransformer
- transforms field value before saving to the final form value - Added requested
onChanged
value notifier event on fields. Closes #45 - Prevent duplicate
attribute
names in fields - assertion - Breaking changes:
FormBuilderInputOption
becomesFormBuilderFieldOption
BuildContext
is not passed down intoFormBuilder
- Fixed URL validator works correctly - tested
- Improved documentation
[2.0.3] - 26-Mar-2019 #
- Allow
null
s inFormBuilder
controlsattribute
[2.0.2] - 26-Mar-2019 #
- Minor fix in documentation
[2.0.1] - 26-Mar-2019 #
- Fixed bug where fields keep losing focus
[2.0.0] - 25-Mar-2019 #
New Features and fixes #
- New attribute
decoration
forFormBuilderInput
. Enables one to customizeInputDecoration
like icons, labelStyles etc - Added ability to add
GlobalKey
of typeFormBuilderState
to FormBuilder that will be the handle to the state of the form enabling saving and resetting. Similar to using Flutter'sForm
. - Added new input type
FormBuilder.signaturePad
which provides a drawing pad for user signature - Added
max
attribute tochipsInput
to limit the number of chips users can add - Added new attribute
maxLines
to be used with textFields with multiple lines - Fixed bug where readonly not working to Date, Time and DateTime Pickers
Breaking Changes #
- Removed reset/submit buttons and corresponding attributes:
showResetButton
,resetButtonContent
Access form state using aGlobalKey<FormBilderState>
- Removed
label
andhint
attributes to be replaced bydecoration
[1.5.1] - 21-Mar-2019 #
- Fixed bugs originating from upgrading
flutter_typeahead
from v0.5.1 to v1.2.1
[1.5.0] - 20-Mar-2019 #
- Now using
datetime_picker_formfield
plugin from pub for DatePicker and TimePicker. Should close #33 - Added new
FormBuilderInput
- DateTimePicker - Breaking change: DatePicker, TimePicker & DateTimePicker now return an object of
type
DateTime
instead ofString
- Upgraded
flutter_typeahead
from v0.5.1 to v1.2.1 - comes with more widgets options
[1.4.0] - 29-Jan-2019 #
[1.3.5] - 28-Jan-2019 #
- Fixed bug on Slider where current value not updated on slider & label
[1.3.4] - 19-Jan-2019 #
Bug fix: Imported dart:async
for use of Future
s to be compatible with Dart <2.1
[1.3.2] - 19-Dec-2018 #
- Allow setting of
format
for DatePicker - Fixed bug where
lastDate
andfirstDate
for DatePicker don't work
[1.3.1] - 17-Dec-2018 #
[1.3.0] - 15-Dec-2018 #
- Fixed bug where TypeAhead value reset when other fields are updated
onChanged
function for FormBuilder is now called with current form values (breaking change)- Form reset now works as expected
- Other minor refactorings
[1.2.0] - 23-Nov-2018 #
- New
FormBuilderInput
types:- ChipsInput
- Some bug fixes
- Minor UI improvements
- Some bugs introduced, to be fixed later
[1.1.0] - 19-Nov-2018 #
- Fixed bug where validation not working for fields outside screen (when using ListView) - Flutter Issue #17385
- Added InputDecoration for all custom FormFields
[1.0.2] - 7-Nov-2018 #
- Fixed bug in (un)selecting checkbox list using by clicking its label
[1.0.1] - 3-Nov-2018 #
- Minor improvements to documentation, added known issues section too
[1.0.0] - 3-Nov-2018 #
Features #
- New
FormBuilderInput
types:- Phone
- Stepper
- Rate
- SegmentedControl
min
andmax
validation added to number field and textField- More specialized keyboard types for TextField control types (text, number, url, email, multiline, phone etc)
- Tapping on Label for radio/checkbox changes the control value
- Created new constructors for password and textField inputs
- Added resetButton
Fixes #
- Fixed bug where
TYPE_TEXT
validates asTYPE_EMAIL
- Closes #1 - Fixed initial value setting
FormBuilderInput.checkboxList()
Breaking Changes #
placeholder
attribute of classFormBuilderInput
renamed tohint
- Removed default constructor for
FormBuilderInput
[0.0.1] - 1-Nov-2018. #
- Initial Release
- Input Types:
- Text
- Number
- MultilineText
- Password
- Radio
- CheckboxList
- Checkbox
- Switch
- Slider
- Dropdown
- DatePicker
- TimePicker
- Url
- TypeAhead