fix update appointment validation on submit
This commit is contained in:
@@ -465,7 +465,9 @@ class _BuildAppointmentListState extends State<BuildAppointmentList> {
|
|||||||
children: [
|
children: [
|
||||||
MihButton(
|
MihButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
updateAppointmentCall(index);
|
if (_formKey.currentState!.validate()) {
|
||||||
|
updateAppointmentCall(index);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
buttonColor: MzanziInnovationHub.of(context)!
|
buttonColor: MzanziInnovationHub.of(context)!
|
||||||
.theme
|
.theme
|
||||||
@@ -495,9 +497,7 @@ class _BuildAppointmentListState extends State<BuildAppointmentList> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool isAppointmentInputValid() {
|
bool isAppointmentInputValid() {
|
||||||
if (widget.titleController.text.isEmpty ||
|
if (widget.dateController.text.isEmpty ||
|
||||||
widget.descriptionIDController.text.isEmpty ||
|
|
||||||
widget.dateController.text.isEmpty ||
|
|
||||||
widget.timeController.text.isEmpty) {
|
widget.timeController.text.isEmpty) {
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user