From 4ee355a7cd7259011bcc313ab047d01bc9bf44e1 Mon Sep 17 00:00:00 2001 From: hailin Date: Fri, 9 Jan 2026 08:51:26 -0800 Subject: [PATCH] =?UTF-8?q?fix(mobile-app):=20=E5=BC=80=E5=B1=8F=E5=9B=BE?= =?UTF-8?q?=E7=89=87=E6=94=B9=E4=B8=BA=E4=BF=9D=E6=8C=81=E5=8E=9F=E6=AF=94?= =?UTF-8?q?=E4=BE=8B=E4=B8=8D=E6=8B=89=E4=BC=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 使用 BoxFit.contain 替代 BoxFit.cover, 图片保持原比例显示,不足部分用黑边填充。 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../lib/features/auth/presentation/pages/splash_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/mobile-app/lib/features/auth/presentation/pages/splash_page.dart b/frontend/mobile-app/lib/features/auth/presentation/pages/splash_page.dart index 4d183456..265590d8 100644 --- a/frontend/mobile-app/lib/features/auth/presentation/pages/splash_page.dart +++ b/frontend/mobile-app/lib/features/auth/presentation/pages/splash_page.dart @@ -298,7 +298,7 @@ class _SplashPageState extends ConsumerState { return SizedBox.expand( child: Image.asset( 'assets/images/splash_static/splash_$_staticImageIndex.jpg', - fit: BoxFit.cover, + fit: BoxFit.contain, // 不拉伸,保持原比例,黑边填充 ), ); }