From 26d070fbaf40f909f40bc5320c65d81b1b97fb9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BC=96=E7=A0=81=E5=B7=A5=E7=A8=8B=E5=B8=88?= Date: Thu, 20 Aug 2026 03:21:47 +0800 Subject: [PATCH] =?UTF-8?q?fix(mobile-next):=20=E6=96=AD=E7=BD=91=E6=A8=AA?= =?UTF-8?q?=E5=B9=85=E5=8A=A0=E9=A1=B6=E9=83=A8=20SafeArea=EF=BC=8C?= =?UTF-8?q?=E9=81=BF=E5=85=8D=E5=8F=A0=E8=BF=9B=E7=8A=B6=E6=80=81=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 仅改 home_view.dart:CompanyOfflineBanner 外包 SafeArea(bottom: false),横幅高度仍为 36。 Co-authored-by: Cursor Co-authored-by: multica-agent --- mobile-next/lib/pages/home/home_view.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mobile-next/lib/pages/home/home_view.dart b/mobile-next/lib/pages/home/home_view.dart index a431e18..1b8f5bb 100644 --- a/mobile-next/lib/pages/home/home_view.dart +++ b/mobile-next/lib/pages/home/home_view.dart @@ -88,7 +88,8 @@ class HomePage extends StatelessWidget { body: Obx( () => Column( children: [ - if (logic.isOffline.value) const CompanyOfflineBanner(), + if (logic.isOffline.value) + const SafeArea(bottom: false, child: CompanyOfflineBanner()), Expanded( child: PersistentTabView( tabs: _tabs(),