Add padding at bottom of edit component page

Previously, the save floating action button was overlapping truth table.
Now, the screen can be scrolled such that the button will no longer
overlap due to the new empty space.
This commit is contained in:
Kenneth Bruen 2022-06-19 07:53:15 +03:00
parent aea18c3262
commit ba6cc9489c
Signed by: kbruen
GPG key ID: C1980A470C3EE5B1

View file

@ -373,6 +373,9 @@ class EditComponentPage extends HookWidget {
),
)
],
const SliverPadding(
padding: EdgeInsets.only(bottom: 56 + 16 + 16),
),
],
),
floatingActionButton: !dirty ? null : FloatingActionButton(