Created
July 10, 2023 03:30
-
-
Save CoderNamedHendrick/c580b19ab32c95a654ee87d32334439f to your computer and use it in GitHub Desktop.
Updated gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ImagePickerFormField( | |
validator: (imageFile) { | |
if (imageFile == null) return 'Please select an image'; | |
return null; | |
}, | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment