diff --git a/lib/router/index/index_router.dart b/lib/router/index/index_router.dart index 57c197c..1b500b2 100644 --- a/lib/router/index/index_router.dart +++ b/lib/router/index/index_router.dart @@ -126,11 +126,14 @@ class _IndexRouter extends CustState statusBarIconBrightness: Brightness.dark, statusBarBrightness: Brightness.light, ), - child: Column( - children: [ - Expanded(child: main), - IndexWebBottomComponent(showControl), - ], + child: SafeArea( + bottom: true, + child: Column( + children: [ + Expanded(child: main), + IndexWebBottomComponent(showControl), + ], + ), ), ), ),