forme 3.1.2-beta forme: ^3.1.2-beta copied to clipboard
a powerful flutter form widget ,easy to use and extend. provide rich api to simplify form control and sync|async validation
3.1.2-beta #
- support set
FocusNode
inFormeFieldState
- support
FormeAutocomplete
3.1.1 #
- fix
FormeValidation
can not be found
3.1.0 #
- remove
hasValidator
onErrorChanged
renamed toonValidationChanged
FormeValidateError
renamed toFormeValidation
FormeValidateState
renamed toFormeValidationState
and add new stateunnecessary
andwaiting
3.0.1 #
- support
hasValidator
onFormeFieldController
- support
errorListenable
onFormeController
- add
FormeValidateErrorBuilder
widget - use
FormeField.of
getFormeFieldController
and it is nullable - use
Forme.of
getFormeController
and it is nullable
3.0.0 #
Forme3 is not an upgrade but a simple version of Forme2
differences:
- Forme3 removed model which used to provide render data in Forme2 and moved model properties into field's constructor
- Forme3 removed listener from field's constructor and moved listener properties into field's constructor
- Forme3 removed CommonField and renamed ValueField to FormeField
- Forme3 has big api breaks
- Forme3 is based on flutter 2.5
2.5.3 #
BaseValueField
supportquietlyValidate
FormeController
addfieldListenable
method , used to listen field's initial and dispose
2.5.2 #
FormeController
'svalidate
method supportclearError
andvalidateByOrder
params. ifclearError
is true , field error will be cleared before validate. ifvalidateByOrder
is true , will only validate one field at a time , and break validation chain if any field validate not passed or failed
2.5.1 #
- add
autovalidateByOrder
onForme
,support validate form fields by order , and stop validate further if validate failed - add a nullable attribute
order
onBaseValueField
Future<Map<FormeValueFieldController, String>> validate({bool quietly = false})
changed toFuture<FormeValidateSnapshot> validate({bool quietly = false, Set<String> names = const {}})
Future<String?>? validate({bool quietly = false})
changed toFuture<FormeFieldValidateSnapshot<T>> validate({bool quietly = false})
- add
isValueChanged
method onFormeController
, used to check whether form data changed after initialed
2.5.0 #
- remove
onValueChanged
,onValidationChanged
,onFocusChanged
,onInitialed
,validator
,autovalidateMode
onField
, they are moved toFormeFieldListener
,validator
is renamed toonValidate
- support
onAsyncValidate
andasyncValidatorDebounce
onFormeValueFieldListener
to support async validate - remove
fieldListenable
fromFormeFieldController
- remove
lazyFieldListenable
fromFormeKey
ValueField
is not aFormField
any more- you can create a nonnull or nullable
ValueField
byValueField
's generic type , eg:ValueField<String>
is nonnull , butValueField<String?>
is nullable - remove
clearValue
fromFormeValueFieldController
- support 'autovalidateMode' on
Forme
2.1.2 #
- remove
buildTextSpan
fromFormeTextFieldController
, it cannot be compiled success before flutter 2.2.2
2.1.1 #
- bug fix: can't get current field error in onValueChanged
FormeSingleSwitch
&FormeListTile
always use material switchFormeValidates
addrange
andequals
vaidator
2.1.0 #
- remove
Cupertino
fields ,they will be moved to another package FormeSlider
andFormeRangeSlider
will perform validate in onChangeEnd ,not in onChangeFormeTextField
's controller can be cast toFormeTextController
, setTextEditingValue
andSelection
is easily via this controllerFormeValueFieldController
supportnextFocus
, used to focus next focusable widget- remove
beforeUpdateModel
fromAbstractFieldState
, you can do some logic inafterUpdateModel
AbstractFieldState
's didUpdateWidget will callafterUpdateModel
by default- bug fix
2.0.4+1 #
- bug fix: timer in
FormeRawAutocomplete
will be cancelled in dispose !
2.0.4 #
- add
modelListenable
onFormeFieldController
- after value changed , you can get old value via
FormeValueFieldController
'soldValue
- validate method add parameter
notify
, used to determine whether triggererrorListenable
FormeAsnycAutocompleteChipModel
supportmax
andexceedCallback
.
2.0.3+1 #
- bug fix: readOnlyNotifier will be disposed !
2.0.3 #
- fields add
InputDecoration
andmaxLines
properties , used to quickly specific labelText or others - add
FormeAsyncAutocompleteChip
2.0.2 #
- add
FormeAutocompleteText
- add
FormeAsyncAutocompleteText
2.0.1 #
- StatefulField support
onInitialed
, used to listenFormeFieldController
initialed - add
FormeValidateUtils
- bug fix : onValidationChanged and errorTextListenable not triggered in build
2.0.0 #
forme is completely rewrite version of https://pub.dev/packages/form_builder much more powerful and won't break your layout