From 74175336afc3b7c89e01a74a584871da8f6ba33e Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 21 Dec 2025 17:37:12 -0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E9=AA=8C=E8=AF=81?= =?UTF-8?q?=E7=A0=81=E8=BE=93=E5=85=A5=E6=A1=86=E6=95=B0=E5=AD=97=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E4=B8=8D=E5=85=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 增加输入框尺寸 48x56 -> 50x60 - 增大字体 20sp -> 24sp - 移除 height: 1.2 行高限制 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../features/auth/presentation/pages/sms_verify_page.dart | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/mobile-app/lib/features/auth/presentation/pages/sms_verify_page.dart b/frontend/mobile-app/lib/features/auth/presentation/pages/sms_verify_page.dart index afb9eb07..e500c0fb 100644 --- a/frontend/mobile-app/lib/features/auth/presentation/pages/sms_verify_page.dart +++ b/frontend/mobile-app/lib/features/auth/presentation/pages/sms_verify_page.dart @@ -366,8 +366,8 @@ class _SmsVerifyPageState extends ConsumerState { mainAxisAlignment: MainAxisAlignment.spaceBetween, children: List.generate(6, (index) { return SizedBox( - width: 48.w, - height: 56.h, + width: 50.w, + height: 60.h, child: KeyboardListener( focusNode: FocusNode(), onKeyEvent: (event) => _onKeyEvent(index, event), @@ -404,10 +404,9 @@ class _SmsVerifyPageState extends ConsumerState { ), ), style: TextStyle( - fontSize: 20.sp, + fontSize: 24.sp, fontWeight: FontWeight.w700, color: const Color(0xFF333333), - height: 1.2, ), onChanged: (value) => _onCodeChanged(index, value), ),