크리에이터 채널

- 시리즈 section 추가
This commit is contained in:
Yu Sung
2024-04-29 16:15:51 +09:00
parent 75b9c76987
commit ffbdbbaa06
7 changed files with 265 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
//
// SeriesItemBadgeView.swift
// SodaLive
//
// Created by klaus on 4/29/24.
//
import SwiftUI
struct SeriesItemBadgeView: View {
let title: String
let backgroundColor: Color
var body: some View {
Text(title)
.font(.custom(Font.medium.rawValue, size: 10.3))
.foregroundColor(.white)
.padding(.vertical, 3.7)
.padding(.horizontal, 5.3)
.background(backgroundColor)
.cornerRadius(13.3)
}
}
#Preview("신작") {
SeriesItemBadgeView(title: "신작", backgroundColor: .button)
}
#Preview("완결") {
SeriesItemBadgeView(title: "완결", backgroundColor: Color(hex: "002abd"))
}
#Preview("인기") {
SeriesItemBadgeView(title: "인기", backgroundColor: Color(hex: "ec6033"))
}