You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using AutovalidateMode.onUserInteraction, I encountered an issue where FormBuilderTextField automatically receives focus when interacting with other fields, such as selecting a date from FormBuilderDateTimePicker or choosing an option from FormBuilderDropdown. This causes the keyboard to open unexpectedly when working with picker fields. Additionally, when a TextField with an error is focused, I’m unable to unfocus it using FocusManager.instance.primaryFocus?.unfocus() because it keeps refocusing and reopening the keyboard.
Alternatives you've considered
At the moment, I'm using AutovalidateMode.disabled as a temporary solution.