mirror of
https://github.com/madari-media/madari-oss.git
synced 2026-03-11 17:15:39 +00:00
fix: padding thing
This commit is contained in:
parent
50fdce5157
commit
41770da1fa
1 changed files with 4 additions and 2 deletions
|
|
@ -96,8 +96,10 @@ class _ScaffoldWithNavState extends State<ScaffoldWithNav> {
|
|||
switch (deviceType) {
|
||||
case DeviceType.mobile:
|
||||
return Scaffold(
|
||||
body: widget.child,
|
||||
extendBody: true,
|
||||
body: Padding(
|
||||
padding: const EdgeInsets.only(bottom: 64.0),
|
||||
child: widget.child,
|
||||
),
|
||||
bottomNavigationBar: MobileNavigation(
|
||||
items: navigationItems,
|
||||
currentIndex: widget.child.currentIndex,
|
||||
|
|
|
|||
Loading…
Reference in a new issue