This commit is contained in:
2025-11-19 15:54:41 +08:00
parent 02937f85cc
commit 797afb63b1
5 changed files with 33 additions and 23 deletions

View File

@@ -131,7 +131,10 @@ class ReservationPage extends GetView<ReservationController> {
DropdownButtonFormField<String>(
value: controller.selectedOperationStatus,
items: controller.operationStatusOptions.map((String value) {
return DropdownMenuItem<String>(value: value, child: Text(value));
return DropdownMenuItem<String>(
value: value,
child: Text(value),
);
}).toList(),
onChanged: controller.onOperationStatusChanged,
decoration: InputDecoration(