This commit is contained in:
2025-12-08 18:57:17 +09:00
parent eab99eee6f
commit f49902c067
6 changed files with 223 additions and 254 deletions
+12 -4
View File
@@ -90,9 +90,18 @@ class CharacterStatusCard extends StatelessWidget {
}).toList(),
),
),
Text("ATK: ${character.totalAtk}", style: const TextStyle(color: ThemeConfig.textColorWhite)),
Text("DEF: ${character.totalDefense}", style: const TextStyle(color: ThemeConfig.textColorWhite)),
Text("LUCK: ${character.totalLuck}", style: const TextStyle(color: ThemeConfig.textColorWhite)),
Text(
"ATK: ${character.totalAtk}",
style: const TextStyle(color: ThemeConfig.textColorWhite),
),
Text(
"DEF: ${character.totalDefense}",
style: const TextStyle(color: ThemeConfig.textColorWhite),
),
Text(
"LUCK: ${character.totalLuck}",
style: const TextStyle(color: ThemeConfig.textColorWhite),
),
],
),
),
@@ -124,7 +133,6 @@ class CharacterStatusCard extends StatelessWidget {
),
),
const SizedBox(height: 8), // 아이콘과 정보 사이 간격
if (!isPlayer && !hideStats)
Consumer<BattleProvider>(
builder: (context, provider, child) {
@@ -268,9 +268,10 @@ class FloatingFeedbackTextState extends State<FloatingFeedbackText>
fontWeight: FontWeight.bold,
shadows: const [
Shadow(
blurRadius: 2.0,
blurRadius:
0.0, // Sharper shadow to avoid blurry/double look
color: ThemeConfig.feedbackShadow,
offset: Offset(1.0, 1.0),
offset: Offset(1.5, 1.5),
),
],
),