home - Fixed navbar hiding bottom screen
This commit is contained in:
parent
8c8d8aa150
commit
21466b3f63
1 changed files with 32 additions and 30 deletions
|
@ -20,7 +20,8 @@ class Home extends StatelessWidget {
|
|||
centerTitle: true,
|
||||
backgroundColor: const Color(0xff212226),
|
||||
),
|
||||
body: SingleChildScrollView(
|
||||
body: SafeArea(
|
||||
child: SingleChildScrollView(
|
||||
physics: const BouncingScrollPhysics(
|
||||
parent: AlwaysScrollableScrollPhysics()),
|
||||
padding: const EdgeInsets.all(defaultPadding),
|
||||
|
@ -52,6 +53,7 @@ class Home extends StatelessWidget {
|
|||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue