feat: 메인 라이브

- 최근 종료한 라이브 UI 추가
This commit is contained in:
Yu Sung
2025-07-22 03:58:10 +09:00
parent 0b04aa20a3
commit 624c12817e
3 changed files with 123 additions and 0 deletions

View File

@@ -85,6 +85,10 @@ struct LiveView: View {
SectionRecommendLiveView(items: viewModel.recommendLiveItems)
}
if viewModel.latestFinishedLiveItems.count > 0 {
SectionLatestFinishedLiveView(items: viewModel.latestFinishedLiveItems)
}
if viewModel.replayLiveItems.count > 0 {
LiveReplayListView(contentList: viewModel.replayLiveItems)
}