style(ui): 전체 화면 폰트 크기 증가

- arena: 전투/결과/랭크 화면 폰트 조정
- front: 메인 화면 폰트 조정
- game: 게임플레이 위젯 전반 폰트 조정 (스킬, 장비, 인벤토리 등)
- hall_of_fame: 명예의 전당 폰트 조정
- new_character: 캐릭터 생성 화면 폰트 조정
- settings: 설정 화면 폰트 조정
- 전반적인 가독성 향상
This commit is contained in:
JiWoong Sul
2026-01-15 19:07:34 +09:00
parent e882093d37
commit cbf96c2c0e
43 changed files with 347 additions and 338 deletions

View File

@@ -60,7 +60,7 @@ class InventoryPage extends StatelessWidget {
title,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 13,
fontSize: 18,
color: Theme.of(context).colorScheme.onPrimaryContainer,
),
),
@@ -89,13 +89,13 @@ class InventoryPage extends StatelessWidget {
Expanded(
child: Text(
localizations.gold,
style: const TextStyle(fontSize: 13),
style: const TextStyle(fontSize: 18),
),
),
Text(
'${inventory.gold}',
style: const TextStyle(
fontSize: 13,
fontSize: 18,
fontWeight: FontWeight.bold,
color: Colors.amber,
),
@@ -120,14 +120,14 @@ class InventoryPage extends StatelessWidget {
Expanded(
child: Text(
translatedName,
style: const TextStyle(fontSize: 13),
style: const TextStyle(fontSize: 18),
overflow: TextOverflow.ellipsis,
),
),
Text(
'${item.count}',
style: const TextStyle(
fontSize: 12,
fontSize: 17,
fontWeight: FontWeight.bold,
),
),
@@ -157,7 +157,7 @@ class InventoryPage extends StatelessWidget {
const SizedBox(height: 4),
Text(
'$percentage%',
style: TextStyle(fontSize: 10, color: Colors.grey.shade600),
style: TextStyle(fontSize: 15, color: Colors.grey.shade600),
),
],
),