시리즈 상세 추가

This commit is contained in:
Yu Sung
2024-04-30 14:58:06 +09:00
parent 101b04b6a9
commit 93110eff8c
14 changed files with 913 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
//
// SeriesKeywordChipView.swift
// SodaLive
//
// Created by klaus on 4/29/24.
//
import SwiftUI
struct SeriesKeywordChipView: View {
let keyword: String
var body: some View {
Text(keyword)
.font(.custom(Font.medium.rawValue, size: 12))
.foregroundColor(Color.grayd2)
.padding(.horizontal, 8)
.padding(.vertical, 5.3)
.background(Color.gray22)
.cornerRadius(26.7)
}
}
#Preview {
SeriesKeywordChipView(keyword: "#로맨스")
}