comprehensive cases

This commit is contained in:
2026-03-17 15:21:06 +05:30
parent e3d8d30b1b
commit 68b0055cfe
30 changed files with 1285 additions and 227 deletions

View File

@@ -255,6 +255,7 @@ class _ShiftOrderFormSheetState extends State<ShiftOrderFormSheet> {
final fdc.OperationResult<dc.CreateShiftData, dc.CreateShiftVariables>
shiftResult = await _dataConnect
.createShift(title: shiftTitle, orderId: orderId)
.description(_orderNameController.text)
.date(orderTimestamp)
.location(selectedHub.hubName)
.locationAddress(selectedHub.address)

View File

@@ -46,6 +46,7 @@ class _OneTimeOrderEventNameInputState
@override
Widget build(BuildContext context) {
return UiTextField(
semanticsIdentifier: 'order_name_input',
label: widget.label,
controller: _controller,
onChanged: widget.onChanged,