codegrue / flutter_material_pickers

A flutter package for displaying common picker dialogs.
https://pub.dev/packages/flutter_material_pickers
MIT License
98 stars 61 forks source link

Validator Form #16

Closed sokunsamnang closed 3 years ago

sokunsamnang commented 3 years ago

How can I get validation this material picker ?? Example, I customize date picker as DOB picker and valueText: _birthdate ?? 'Select Date of Birth'. So, if user not select this button to set value, it have to validated.

codegrue commented 3 years ago

This library returns onChanged which you can use to consume or analyze the returned values. If you want a validate method like in flutter forms, that is on the form field widget, and is out of scope for the intent of this library, which is to display the dialogs. Check out Card Settings for an example of this being used to create form fields.