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