From ef7169f433577b097323932d5297ea978b6a7a00 Mon Sep 17 00:00:00 2001 From: hailin Date: Sat, 20 Dec 2025 22:49:40 -0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=8E=A8=E8=8D=90?= =?UTF-8?q?=E7=A0=81=E8=BE=93=E5=85=A5=E6=A1=86=E9=A2=9C=E8=89=B2=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 改为白色背景(alpha: 0.9),更不透明 - 文字颜色改为 black87,清晰可见 - 边框改为绿色,更突出 - 提示文字改为灰色,易于区分 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .../features/auth/presentation/pages/guide_page.dart | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/frontend/mobile-app/lib/features/auth/presentation/pages/guide_page.dart b/frontend/mobile-app/lib/features/auth/presentation/pages/guide_page.dart index aafb2d10..7f796d59 100644 --- a/frontend/mobile-app/lib/features/auth/presentation/pages/guide_page.dart +++ b/frontend/mobile-app/lib/features/auth/presentation/pages/guide_page.dart @@ -586,11 +586,11 @@ class _WelcomePageContentState extends ConsumerState<_WelcomePageContent> { Container( padding: EdgeInsets.symmetric(vertical: 12.h, horizontal: 16.w), decoration: BoxDecoration( - color: Colors.white.withValues(alpha: 0.15), + color: Colors.white.withValues(alpha: 0.9), // 改为更不透明的背景 borderRadius: BorderRadius.circular(12.r), border: Border.all( - color: Colors.white.withValues(alpha: 0.3), - width: 1, + color: const Color(0xFF4CAF50), // 绿色边框 + width: 1.5, ), ), child: Row( @@ -602,7 +602,7 @@ class _WelcomePageContentState extends ConsumerState<_WelcomePageContent> { hintText: '请输入推荐码或点击右侧扫码', hintStyle: TextStyle( fontSize: 15.sp, - color: Colors.white.withValues(alpha: 0.5), + color: Colors.grey[500], // 改为灰色提示文字 ), border: InputBorder.none, isDense: true, @@ -610,7 +610,8 @@ class _WelcomePageContentState extends ConsumerState<_WelcomePageContent> { ), style: TextStyle( fontSize: 16.sp, - color: Colors.white, + color: Colors.black87, // 改为深色文字,清晰可见 + fontWeight: FontWeight.w500, ), ), ),