From 5113975c728f16df5e3c0b8a89db808f042f994e Mon Sep 17 00:00:00 2001 From: hailin Date: Wed, 4 Mar 2026 23:02:34 -0800 Subject: [PATCH] =?UTF-8?q?fix(genex-mobile):=20=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E7=A7=BB=E9=99=A4=E8=BF=94=E5=9B=9E=E9=94=AE=E5=B9=B6=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E6=90=9C=E7=B4=A2=E6=A0=8F=E6=BA=A2=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SliverAppBar 添加 automaticallyImplyLeading: false, 防止 Tab 导航进入时显示返回键,并修复返回键占位导致的搜索栏 overflow 6px。 Co-Authored-By: Claude Sonnet 4.6 --- .../lib/features/coupons/presentation/pages/home_page.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/genex-mobile/lib/features/coupons/presentation/pages/home_page.dart b/frontend/genex-mobile/lib/features/coupons/presentation/pages/home_page.dart index 4b2fea5..e73a9bb 100644 --- a/frontend/genex-mobile/lib/features/coupons/presentation/pages/home_page.dart +++ b/frontend/genex-mobile/lib/features/coupons/presentation/pages/home_page.dart @@ -76,6 +76,7 @@ class _HomePageState extends State { SliverAppBar( floating: true, pinned: false, + automaticallyImplyLeading: false, backgroundColor: AppColors.background, elevation: 0, toolbarHeight: 60,