feat(ui): 명예의 전당 화면 대폭 개선

- HallOfFameScreen UI 리뉴얼
- DeathOverlay 업데이트
This commit is contained in:
JiWoong Sul
2026-01-07 20:21:59 +09:00
parent 6667de56d3
commit 307007e164
2 changed files with 635 additions and 372 deletions

View File

@@ -94,10 +94,11 @@ class DeathOverlay extends StatelessWidget {
],
),
),
// 본문
SingleChildScrollView(
padding: const EdgeInsets.all(16),
child: Column(
// 본문 (스크롤 가능)
Flexible(
child: SingleChildScrollView(
padding: const EdgeInsets.all(16),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
// 사망 타이틀
@@ -134,6 +135,7 @@ class DeathOverlay extends StatelessWidget {
],
),
),
),
],
),
),