feat(creator): 후원 탭 UI 조각을 추가한다

This commit is contained in:
Yu Sung
2026-07-04 22:44:48 +09:00
parent e75d836b99
commit 02b56ac6da
4 changed files with 226 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
import SwiftUI
struct CreatorChannelDonationCountBar: View {
let donationCount: Int
var body: some View {
HStack(spacing: SodaSpacing.s4) {
Text("전체")
.appFont(size: 16, weight: .medium)
.foregroundColor(.white)
Text("\(donationCount)")
.appFont(size: 16, weight: .medium)
.foregroundColor(Color.gray500)
Spacer()
}
.padding(.horizontal, SodaSpacing.s14)
.frame(height: 52)
.background(Color.black)
}
}
struct CreatorChannelDonationCountBar_Previews: PreviewProvider {
static var previews: some View {
CreatorChannelDonationCountBar(donationCount: 23)
.previewLayout(.sizeThatFits)
}
}