Files
sodalive-ios/SodaLive/Sources/UI/Component/SeriesItemBadgeView.swift
Yu Sung 280e424385 커스텀 폰트 pretendard-medium, gmarket-medium를 사용하고 있던 것을 appFont 모디
파이어를 사용하여 한국어는 pretendard, 그 외에는 시스템 폰트를 사용하도록 수정
2026-01-23 03:09:20 +09:00

37 lines
789 B
Swift

//
// 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)
.appFont(size: 10.3, weight: .medium)
.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"))
}