커스텀 폰트 pretendard-medium, gmarket-medium를 사용하고 있던 것을 appFont 모디

파이어를 사용하여 한국어는 pretendard, 그 외에는 시스템 폰트를 사용하도록 수정
This commit is contained in:
Yu Sung
2026-01-23 03:09:20 +09:00
parent d92dcbc696
commit 280e424385
238 changed files with 831 additions and 831 deletions

View File

@@ -57,7 +57,7 @@ struct ContentOrderConfirmDialogView: View {
VStack(alignment: .leading, spacing: 0) {
Text(themeStr)
.font(.custom(Font.medium.rawValue, size: 8))
.appFont(size: 8, weight: .medium)
.foregroundColor(Color(hex: "3bac6a"))
.padding(2.3)
.background(Color(hex: "28312b"))
@@ -82,13 +82,13 @@ struct ContentOrderConfirmDialogView: View {
.clipShape(Circle())
Text(creatorNickname)
.font(.custom(Font.medium.rawValue, size: 10))
.appFont(size: 10, weight: .medium)
.foregroundColor(Color.gray77)
}
.padding(.top, 6.7)
Text(duration)
.font(.custom(Font.medium.rawValue, size: 11))
.appFont(size: 11, weight: .medium)
.foregroundColor(Color.gray77)
.padding(.top, 6.7)
}
@@ -101,7 +101,7 @@ struct ContentOrderConfirmDialogView: View {
.padding(.top, 21.3)
Text("콘텐츠를 \(orderType == .RENTAL ? "대여" : "소장")하시겠습니까?")
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee)
.fixedSize(horizontal: false, vertical: true)
.multilineTextAlignment(.center)
@@ -109,7 +109,7 @@ struct ContentOrderConfirmDialogView: View {
if UserDefaults.int(forKey: .userId) != 17958 {
Text("아래 금액이 차감됩니다.")
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee)
.fixedSize(horizontal: false, vertical: true)
.multilineTextAlignment(.center)
@@ -134,7 +134,7 @@ struct ContentOrderConfirmDialogView: View {
if usablePoint > 0 && remainingCan > 0 {
Text("+")
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee)
}