diff --git a/lib/src/features/game/widgets/hp_mp_bar.dart b/lib/src/features/game/widgets/hp_mp_bar.dart index 7ebe9dc..361d8b4 100644 --- a/lib/src/features/game/widgets/hp_mp_bar.dart +++ b/lib/src/features/game/widgets/hp_mp_bar.dart @@ -291,12 +291,14 @@ class _HpMpBarState extends State with TickerProviderStateMixin { ), ), const SizedBox(width: 4), - SizedBox( - width: 60, + // Flexible로 오버플로우 방지 + Flexible( + flex: 0, child: Text( '$current/$max', style: const TextStyle(fontSize: 9), textAlign: TextAlign.right, + overflow: TextOverflow.ellipsis, ), ), ],