From c1b8a441b6d93ec1b05cac24de987b8814d6cea8 Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 21 Dec 2025 17:54:37 -0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=9A=90=E8=97=8F=E9=AA=8C=E8=AF=81?= =?UTF-8?q?=E7=A0=81=E8=BE=93=E5=85=A5=E6=A1=86=E5=85=89=E6=A0=87=E8=A7=A3?= =?UTF-8?q?=E5=86=B3=E6=95=B0=E5=AD=97=E6=98=BE=E7=A4=BA=E4=B8=8D=E5=85=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加 showCursor: false 隐藏光标 - 光标移走后数字不再被遮挡偏移 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../lib/features/auth/presentation/pages/sms_verify_page.dart | 1 + 1 file changed, 1 insertion(+) 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 e500c0fb..5250cef2 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 @@ -377,6 +377,7 @@ class _SmsVerifyPageState extends ConsumerState { keyboardType: TextInputType.number, textAlign: TextAlign.center, maxLength: 1, + showCursor: false, // 隐藏光标,避免光标影响数字显示位置 inputFormatters: [ FilteringTextInputFormatter.digitsOnly, ],