Add more bottom padding for BAB, fixes #174

This commit is contained in:
shilangyu 2021-04-06 15:39:19 +02:00
parent 681ab555b2
commit c847a3aaa6
1 changed files with 10 additions and 3 deletions

View File

@ -94,9 +94,16 @@ class MyHomePage extends HookWidget {
return Scaffold(
extendBody: true,
body: IndexedStack(
index: currentTab.value,
children: pages,
body: Column(
children: [
Expanded(
child: IndexedStack(
index: currentTab.value,
children: pages,
),
),
const SizedBox(height: kMinInteractiveDimension / 2),
],
),
floatingActionButton: const CreatePostFab(),
floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,