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

32 lines
736 B
Swift

//
// ContentBoxTabView.swift
// SodaLive
//
// Created by klaus on 12/7/24.
//
import SwiftUI
struct ContentBoxTabView: View {
let title: String
let isSelected: Bool
var body: some View {
Text(title)
.appFont(size: 14.7, weight: .medium)
.foregroundColor(isSelected ? Color.button : Color.gray77)
.padding(.vertical, 8.3)
.padding(.horizontal, 13.3)
.overlay(
RoundedRectangle(cornerRadius: 26.7)
.strokeBorder(lineWidth: 1)
.foregroundColor(isSelected ? Color.button : Color.gray77)
)
}
}
#Preview {
ContentBoxTabView(title: "재생목록", isSelected: false)
}