Compare commits

..

No commits in common. '912f7b23f1499d362bb118bde8ad65fbfcffa7ed' and '99414bf787122b2610936699cc7ac110723fc505' have entirely different histories.

@ -150,9 +150,7 @@ class _MowadhafhiHRRequestState extends State<MowadhafhiHRRequest> {
isReadOnly: false, isReadOnly: false,
onChange: (String value) { onChange: (String value) {
debugPrint(value); debugPrint(value);
setState(() {
description = value; description = value;
});
}, },
), ),
], ],
@ -173,7 +171,7 @@ class _MowadhafhiHRRequestState extends State<MowadhafhiHRRequest> {
} }
bool checkValidation() { bool checkValidation() {
if (selectedServiceType == null || selectedDepartment == null || selectedSection == null || selectedTopic == null || description == "") { if (selectedServiceType == null || selectedDepartment == null || selectedSection == null || selectedTopic == null) {
return false; return false;
} else { } else {
return true; return true;

Loading…
Cancel
Save