Fix for cropped screans
This commit is contained in:
@ -645,7 +645,10 @@ class _MainPageState extends State<MainPage> with WidgetsBindingObserver, Ticker
|
|||||||
bottomNavigationBar: BottomInfoBar(
|
bottomNavigationBar: BottomInfoBar(
|
||||||
controller: _bottomInfoBarController,
|
controller: _bottomInfoBarController,
|
||||||
),
|
),
|
||||||
body: _buildScaffoldBody(true)
|
body: SafeArea(
|
||||||
|
top: false,
|
||||||
|
child: _buildScaffoldBody(true)
|
||||||
|
)
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
@ -655,7 +658,10 @@ class _MainPageState extends State<MainPage> with WidgetsBindingObserver, Ticker
|
|||||||
bottomNavigationBar: BottomInfoBar(
|
bottomNavigationBar: BottomInfoBar(
|
||||||
controller: _bottomInfoBarController,
|
controller: _bottomInfoBarController,
|
||||||
),
|
),
|
||||||
body: _buildScaffoldBody(false)
|
body: SafeArea(
|
||||||
|
top: false,
|
||||||
|
child: _buildScaffoldBody(false)
|
||||||
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user