From 679e3ee6bb69a2337f27f3982a766696eed2241b Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 16 Feb 2023 14:46:53 +0200 Subject: [PATCH] Schedules --- lib/ui/schedule/edit/schedule_edit.dart | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/ui/schedule/edit/schedule_edit.dart b/lib/ui/schedule/edit/schedule_edit.dart index 838ef1392..42bec5370 100644 --- a/lib/ui/schedule/edit/schedule_edit.dart +++ b/lib/ui/schedule/edit/schedule_edit.dart @@ -96,8 +96,9 @@ class _ScheduleEditState extends State { viewModel.onSavePressed(context); }, body: Form( - key: _formKey, - child: Builder(builder: (BuildContext context) { + key: _formKey, + child: Builder( + builder: (BuildContext context) { return ScrollableListView( children: [ FormCard( @@ -239,7 +240,9 @@ class _ScheduleEditState extends State { ) ], ); - })), + }, + ), + ), ); } }