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

34 lines
885 B
Swift

//
// UserProfileIntroduceView.swift
// SodaLive
//
// Created by klaus on 2023/08/11.
//
import SwiftUI
struct UserProfileIntroduceView: View {
let introduce: String
var body: some View {
VStack(alignment: .leading, spacing: 16.7) {
Text("채널 소개")
.appFont(size: 16.7, weight: .bold)
.foregroundColor(Color(hex: "eeeeee"))
Text(introduce)
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color(hex: "777777"))
}
.frame(width: screenSize().width - 26.7, alignment: .leading)
}
}
struct UserProfileIntroduceView_Previews: PreviewProvider {
static var previews: some View {
UserProfileIntroduceView(introduce: "상담사1 입니다.yyyyyyy\n\n\n\n\n\n\njgdgjdgjdgicyifyicyi\n\n\n\n\n\n\n\n\n\n\n\n")
}
}