fix size field

This commit is contained in:
J. A. Messias 2024-09-13 17:06:32 -03:00
parent 8f9570ebd2
commit fb137ef4f3
1 changed files with 3 additions and 1 deletions

View File

@ -170,7 +170,9 @@ class PetsPageModel extends FlutterFlowModel<PetsPageWidget> {
dropDownValue1 == '') {
return false;
}
if (dropDownValue2 == null) {
if (dropDownValue2 == null ||
dropDownValue2!.isEmpty ||
dropDownValue2 == '') {
return false;
}
return true;