diff --git a/lib/pages/main/main.page.dart b/lib/pages/main/main.page.dart index baac651..5f0598c 100644 --- a/lib/pages/main/main.page.dart +++ b/lib/pages/main/main.page.dart @@ -645,7 +645,10 @@ class _MainPageState extends State with WidgetsBindingObserver, Ticker bottomNavigationBar: BottomInfoBar( controller: _bottomInfoBarController, ), - body: _buildScaffoldBody(true) + body: SafeArea( + top: false, + child: _buildScaffoldBody(true) + ) ); } else { return Scaffold( @@ -655,7 +658,10 @@ class _MainPageState extends State with WidgetsBindingObserver, Ticker bottomNavigationBar: BottomInfoBar( controller: _bottomInfoBarController, ), - body: _buildScaffoldBody(false) + body: SafeArea( + top: false, + child: _buildScaffoldBody(false) + ) ); } }