-
- Notifications
You must be signed in to change notification settings - Fork 559
Closed as not planned
Labels
Staleawaiting author responseWaiting for author of issue to respond with more infoWaiting for author of issue to respond with more infoenhancementNew feature or requestNew feature or request
Description
Is there an existing issue for this?
- I have searched the existing issues
Package/Plugin version
9.2.1
What you'd like to happen
The form is validated only when the user click on submit. At this moment, some fields are invalidate, with an error message.
I would like on remove the error message as soon as the user updates the value.
Example:
FormBuilder( key: _formKey, autovalidateMode: AutovalidateMode.disabled, child: Column( children: [ FormBuilderTextField( name: 'email', autofillHints: const [ AutofillHints.email, ], keyboardType: TextInputType.emailAddress, // * reset field error when value changes // * using Form Key onChanged: (value) => _formKey.currentState?.fields['email']?.resetError(), // * OR using Field Key onChanged: (value) => _fieldKey.currentState?.resetError(), validator: FormBuilderValidators.compose([ FormBuilderValidators.required(), FormBuilderValidators.email(), ]), ), ], ), );
Alternatives you've considered
No response
Aditional information
No response
Ez3kiel-dev, justforworkandstuff and uzuki-P
Metadata
Metadata
Assignees
Labels
Staleawaiting author responseWaiting for author of issue to respond with more infoWaiting for author of issue to respond with more infoenhancementNew feature or requestNew feature or request