From 6bbd4a6c78a50bcd9cee17676b9e52a23a10759d Mon Sep 17 00:00:00 2001 From: hailin Date: Sun, 21 Dec 2025 03:35:43 -0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=81=A2=E5=A4=8D?= =?UTF-8?q?=E8=B4=A6=E5=8F=B7=E9=A1=B5=E9=9D=A2=E9=94=AE=E7=9B=98=E5=BC=B9?= =?UTF-8?q?=E5=87=BA=E6=97=B6=E7=9A=84=E6=BA=A2=E5=87=BA=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 Column 改为 SingleChildScrollView 包裹,支持滚动 - 在底部添加额外间距,避免内容被键盘遮挡 - 修复 RenderFlex overflowed by 18 pixels 错误 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .../lib/features/auth/presentation/pages/phone_login_page.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/mobile-app/lib/features/auth/presentation/pages/phone_login_page.dart b/frontend/mobile-app/lib/features/auth/presentation/pages/phone_login_page.dart index f4c2d9fd..1540f1c4 100644 --- a/frontend/mobile-app/lib/features/auth/presentation/pages/phone_login_page.dart +++ b/frontend/mobile-app/lib/features/auth/presentation/pages/phone_login_page.dart @@ -149,7 +149,7 @@ class _PhoneLoginPageState extends ConsumerState { body: GestureDetector( onTap: () => FocusScope.of(context).unfocus(), child: SafeArea( - child: Padding( + child: SingleChildScrollView( padding: EdgeInsets.symmetric(horizontal: 24.w), child: Column( crossAxisAlignment: CrossAxisAlignment.start, @@ -192,6 +192,7 @@ class _PhoneLoginPageState extends ConsumerState { SizedBox(height: 24.h), // 注册提示 _buildRegisterHint(), + SizedBox(height: 32.h), ], ), ),