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), ], ), ),