feat(mobile): 모바일 옵션 메뉴에 통계/도움말 추가 및 오버플로우 수정

- MobileCarouselLayout에 onShowStatistics, onShowHelp 콜백 추가
- 옵션 메뉴에 통계, 도움말 메뉴 항목 추가
- SingleChildScrollView로 메뉴 오버플로우 방지
- isScrollControlled와 maxHeight 제약 조건 적용
This commit is contained in:
JiWoong Sul
2025-12-30 16:19:36 +09:00
parent 05a8c03892
commit 0ee6ef8493
2 changed files with 46 additions and 3 deletions

View File

@@ -745,6 +745,9 @@ class _GamePlayScreenState extends State<GamePlayScreen>
setState(() => _sfxVolume = volume);
widget.audioService?.setSfxVolume(volume);
},
// 통계 및 도움말
onShowStatistics: () => _showStatisticsDialog(context),
onShowHelp: () => HelpDialog.show(context),
),
// 사망 오버레이
if (state.isDead && state.deathInfo != null)