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 { ) ], ); - })), + }, + ), + ), ); } }