fix(mobile-app): 开屏图片改为保持原比例不拉伸

使用 BoxFit.contain 替代 BoxFit.cover,
图片保持原比例显示,不足部分用黑边填充。

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-09 08:51:26 -08:00
parent 96695575d5
commit 4ee355a7cd
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ class _SplashPageState extends ConsumerState<SplashPage> {
return SizedBox.expand(
child: Image.asset(
'assets/images/splash_static/splash_$_staticImageIndex.jpg',
fit: BoxFit.cover,
fit: BoxFit.contain, //
),
);
}