나머지 .font를 .appFont로 변경하여 한국어 텍스트와 다른 언어 텍스트에 다른 폰트 적용

This commit is contained in:
Yu Sung
2026-01-23 03:46:11 +09:00
parent b3331d5512
commit 9533b06d1e
21 changed files with 48 additions and 87 deletions

View File

@@ -137,7 +137,7 @@ struct CanPgPaymentView: View {
HStack(spacing: 16.7) {
Text("통합 결제")
.font(.custom( viewModel.paymentMethod == .unified ? Font.bold.rawValue : Font.medium.rawValue, size: 16.7))
.appFont(size: 16.7, weight: viewModel.paymentMethod == .unified ? .bold : .medium)
.foregroundColor(viewModel.paymentMethod == .unified ? Color.button : Color.grayee)
.frame(maxWidth: .infinity)
.padding(.vertical, 16.7)
@@ -180,7 +180,7 @@ struct CanPgPaymentView: View {
}
Text("휴대폰 결제")
.font(.custom( viewModel.paymentMethod == .phone ? Font.bold.rawValue : Font.medium.rawValue, size: 16.7))
.appFont(size: 16.7, weight: viewModel.paymentMethod == .phone ? .bold : .medium)
.foregroundColor(viewModel.paymentMethod == .phone ? Color.button : Color.grayee)
.frame(maxWidth: .infinity)
.padding(.vertical, 16.7)