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

35 lines
925 B
Swift

//
// CanCouponNoticeItemView.swift
// SodaLive
//
// Created by klaus on 2024/01/03.
//
import SwiftUI
struct CanCouponNoticeItemView: View {
let notice: String
var body: some View {
HStack(alignment: .top, spacing: 4) {
Text("-")
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color(hex: "eeeeee"))
Text(notice)
.multilineTextAlignment(.leading)
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color(hex: "eeeeee"))
.fixedSize(horizontal: false, vertical: true)
}
.padding(.horizontal, 10)
}
}
struct CanCouponNoticeItemView_Previews: PreviewProvider {
static var previews: some View {
CanCouponNoticeItemView(notice: "본인인증한 계정 1회에 한해 이벤트 쿠폰등록이 적용 됩니다.")
}
}