커스텀 폰트 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

@@ -27,7 +27,7 @@ struct LivePaymentDialog: View {
.foregroundColor(Color.graybb)
Text(desc)
.font(.custom(Font.medium.rawValue, size: 15))
.appFont(size: 15, weight: .medium)
.foregroundColor(Color.graybb)
.multilineTextAlignment(.center)
.lineSpacing(6)
@@ -37,22 +37,22 @@ struct LivePaymentDialog: View {
VStack(spacing: 13.3) {
HStack(spacing: 6.7) {
Text("- 시작 시각 : ")
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.graybb)
Text(startDateTime)
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.graybb)
}
HStack(spacing: 6.7) {
Text("- 현재 시각 :")
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.graybb)
.multilineTextAlignment(.leading)
Text(nowDateTime)
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.graybb)
}
}
@@ -63,7 +63,7 @@ struct LivePaymentDialog: View {
.padding(.top, 21.3)
Text(desc)
.font(.custom(Font.medium.rawValue, size: 15))
.appFont(size: 15, weight: .medium)
.foregroundColor(Color.graybb)
.lineSpacing(6)
.padding(.top, 21.3)