feat: 메인 홈 - 크리에이터 랭킹, 추천 채널

- 터치시 크리에이터 채널로 이동하는 기능 추가
This commit is contained in:
Yu Sung
2025-07-14 18:47:21 +09:00
parent d05aea3ff9
commit 4c3fa0fbb5
2 changed files with 6 additions and 0 deletions

View File

@@ -68,6 +68,9 @@ struct HomeCreatorRankingItemView: View {
.padding(.leading, 10)
}
}
.onTapGesture {
AppState.shared.setAppStep(step: .creatorDetail(userId: item.id))
}
}
}

View File

@@ -39,6 +39,9 @@ struct RecommendChannelItemView: View {
}
}
}
.onTapGesture {
AppState.shared.setAppStep(step: .creatorDetail(userId: item.channelId))
}
ForEach(0..<item.contentList.count, id: \.self) {
RecommendChannelContentItemView(item: item.contentList[$0])