Schedules

This commit is contained in:
Hillel Coren 2023-02-16 14:46:53 +02:00
parent 0c362e5ee1
commit 679e3ee6bb
1 changed files with 6 additions and 3 deletions

View File

@ -96,8 +96,9 @@ class _ScheduleEditState extends State<ScheduleEdit> {
viewModel.onSavePressed(context); viewModel.onSavePressed(context);
}, },
body: Form( body: Form(
key: _formKey, key: _formKey,
child: Builder(builder: (BuildContext context) { child: Builder(
builder: (BuildContext context) {
return ScrollableListView( return ScrollableListView(
children: <Widget>[ children: <Widget>[
FormCard( FormCard(
@ -239,7 +240,9 @@ class _ScheduleEditState extends State<ScheduleEdit> {
) )
], ],
); );
})), },
),
),
); );
} }
} }