Files
sodalive-ios/SodaLive/Sources/MyPage/ServiceCenter/ServiceCenterCategoryItemView.swift
Yu Sung 2f96ad1321 캔 충전
- 탭 순서 변경 ( pg, 인 앱 결제 순으로 )
2024-04-02 02:01:26 +09:00

32 lines
786 B
Swift

//
// ServiceCenterCategoryItemView.swift
// SodaLive
//
// Created by klaus on 2023/08/11.
//
import SwiftUI
struct ServiceCenterCategoryItemView: View {
let category: String
let isSelected: Bool
var body: some View {
GeometryReader { proxy in
Text(category)
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(.white)
.frame(width: proxy.size.width, height: 46.7)
.background(isSelected ? Color.button : Color.gray22)
.cornerRadius(4.7)
}
}
}
struct ServiceCenterCategoryItemView_Previews: PreviewProvider {
static var previews: some View {
ServiceCenterCategoryItemView(category: "전체", isSelected: false)
}
}