feat(creator): 팬Talk 탭을 추가한다

This commit is contained in:
Yu Sung
2026-07-05 00:44:03 +09:00
parent 7c98af0c7d
commit f5ead536ea
16 changed files with 1250 additions and 28 deletions

View File

@@ -0,0 +1,22 @@
import SwiftUI
struct CreatorChannelFanTalkCountBar: View {
let fanTalkCount: Int
var body: some View {
HStack(spacing: SodaSpacing.s4) {
Text("전체")
.appFont(size: 16, weight: .medium)
.foregroundColor(.white)
Text("\(fanTalkCount)")
.appFont(size: 16, weight: .medium)
.foregroundColor(Color.gray500)
Spacer()
}
.padding(.horizontal, SodaSpacing.s14)
.frame(height: 52)
.background(Color.black)
}
}