feat(creator): 채널 헤더를 연결한다

This commit is contained in:
Yu Sung
2026-07-02 21:54:16 +09:00
parent 1a7368d2a4
commit 6b571424cf
7 changed files with 203 additions and 58 deletions

View File

@@ -6,17 +6,8 @@ struct CreatorChannelHomeView: View {
var body: some View {
ScrollView {
VStack(alignment: .leading, spacing: 16) {
Text(response.creator.nickname)
.font(.system(size: 24, weight: .bold))
.foregroundColor(.white)
Text(I18n.CreatorChannelHome.followerCount(response.creator.followerCount.comma()))
.font(.system(size: 14))
.foregroundColor(Color.gray500)
}
.frame(maxWidth: .infinity, alignment: .leading)
.padding(20)
Color.clear
.frame(height: 1)
}
.background(Color.black)
}