This commit is contained in:
2025-12-10 23:47:40 +09:00
parent 2de58a6525
commit c029cd1e10
12 changed files with 602 additions and 306 deletions
+11 -2
View File
@@ -650,8 +650,17 @@ class _BattleScreenState extends State<BattleScreen> {
child: Stack(
key: _stackKey,
children: [
// 1. Background (Black)
Container(color: ThemeConfig.battleBg),
// 1. Background Image
Container(
decoration: const BoxDecoration(
image: DecorationImage(
image: AssetImage('assets/images/background/tier_1.jpg'),
fit: BoxFit.cover,
),
),
),
// 1.1 Opacity Layer
Container(color: Colors.black.withValues(alpha: 0.7)),
// 2. Battle Content (Top Bar + Characters)
Column(