m3uzz / date_time_picker

A Flutter widget to show a text form field to display a date or clock dialog. This widget extend TextField and has a similar behavior as TextFormField.
https://pub.dartlang.org/packages/date_time_picker
Other
105 stars 158 forks source link

Autovalidate mode #65

Open tlinxe opened 2 years ago

tlinxe commented 2 years ago

Hi. It is not possible to use the autovalidate mode [AutovalidateMode.onUserInteraction]. Would it be possible to add the "autovalidateMode" parameter in a next version?

I modified the local code like this: autovalidateMode: autovalidateMode?? (autovalidate ? AutovalidateMode.always : AutovalidateMode.disabled),