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

@@ -40,7 +40,7 @@ struct ApplyMethodView: View {
Image("ic_upload")
Text("파일 업로드")
.font(.custom(Font.medium.rawValue, size: 14.7))
.appFont(size: 14.7, weight: .medium)
.foregroundColor(Color.button)
}
.padding(.vertical, 8)
@@ -61,7 +61,7 @@ struct ApplyMethodView: View {
Image("ic_mic_color_button")
Text("바로 녹음")
.font(.custom(Font.medium.rawValue, size: 14.7))
.appFont(size: 14.7, weight: .medium)
.foregroundColor(Color.button)
}
.padding(.vertical, 8)
@@ -82,7 +82,7 @@ struct ApplyMethodView: View {
HStack(spacing: 0) {
Text("※ 파일은 mp3, aac만 업로드 가능")
.font(.custom(Font.medium.rawValue, size: 12))
.appFont(size: 12, weight: .medium)
.foregroundColor(Color.gray77)
.padding(.top, 13.3)

View File

@@ -43,7 +43,7 @@ struct AuditionApplicantItemView: View {
VStack(spacing: 8) {
HStack(spacing: 0) {
Text(item.nickname.count > 9 ? "\(item.nickname.prefix(9))..." : item.nickname)
.font(.custom(Font.medium.rawValue, size: 12))
.appFont(size: 12, weight: .medium)
.foregroundColor(Color.white)
.onTapGesture {
AppState.shared.setAppStep(step: .creatorDetail(userId: item.memberId))
@@ -53,7 +53,7 @@ struct AuditionApplicantItemView: View {
if soundManager.applicantId == item.applicantId {
Text("\(secondsToMinutesSeconds(Int(soundManager.currentTime)))/\(secondsToMinutesSeconds(Int(soundManager.duration)))")
.font(.custom(Font.medium.rawValue, size: 12))
.appFont(size: 12, weight: .medium)
.foregroundColor(Color.gray77)
}
}
@@ -68,7 +68,7 @@ struct AuditionApplicantItemView: View {
Image("ic_heart_vote")
Text("\(item.voteCount)")
.font(.custom(Font.medium.rawValue, size: 12))
.appFont(size: 12, weight: .medium)
.foregroundColor(Color.gray77)
}
.onTapGesture {

View File

@@ -77,7 +77,7 @@ struct AuditionApplicantRecordingView: View {
Spacer()
Text("삭제")
.font(.custom(Font.medium.rawValue, size: 15.3))
.appFont(size: 15.3, weight: .medium)
.foregroundColor(Color.graybb.opacity(0))
Spacer()
@@ -100,7 +100,7 @@ struct AuditionApplicantRecordingView: View {
Spacer()
Text("삭제")
.font(.custom(Font.medium.rawValue, size: 15.3))
.appFont(size: 15.3, weight: .medium)
.foregroundColor(Color.graybb)
.onTapGesture {
soundManager.stopAudio()
@@ -178,7 +178,7 @@ struct AuditionApplicantRecordingView: View {
.padding(.vertical, 13.3)
.padding(.horizontal, 6.7)
.frame(width: screenSize().width - 66.7, alignment: .center)
.font(.custom(Font.medium.rawValue, size: 12))
.appFont(size: 12, weight: .medium)
.background(Color.button)
.foregroundColor(Color.white)
.multilineTextAlignment(.center)

View File

@@ -34,7 +34,7 @@ struct AuditionApplyView: View {
VStack(alignment: .leading, spacing: 0) {
HStack(spacing: 0) {
Text("오디션 지원")
.font(.custom(Font.medium.rawValue, size: 18.3))
.appFont(size: 18.3, weight: .medium)
.foregroundColor(.white)
Spacer()
@@ -54,7 +54,7 @@ struct AuditionApplyView: View {
Image("ic_note_square")
Text(filename)
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(.grayd2)
Spacer()
@@ -75,7 +75,7 @@ struct AuditionApplyView: View {
.autocapitalization(.none)
.disableAutocorrection(true)
.keyboardType(.decimalPad)
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(.grayee)
.padding(.horizontal, 13.3)
.padding(.vertical, 17)
@@ -90,7 +90,7 @@ struct AuditionApplyView: View {
.frame(width: 20, height: 20)
Text("보이스온 오디오 드라마 오디션 합격시 개인 연락을 위한 개인 정보(연락처) 수집 및 활용에 동의합니다.\n오디션 지원자는 개인정보 수집 및 활용 동의에 거부할 권리가 있으며 비동의시 오디션 지원은 취소 됩니다.")
.font(.custom(Font.medium.rawValue, size: 13.3))
.appFont(size: 13.3, weight: .medium)
.foregroundColor(Color.grayee)
.lineSpacing(3)
}
@@ -137,7 +137,7 @@ struct AuditionApplyView: View {
Text(errorMessage)
.padding(.vertical, 13.3)
.frame(width: screenSize().width - 66.7, alignment: .center)
.font(.custom(Font.medium.rawValue, size: 12))
.appFont(size: 12, weight: .medium)
.background(Color.button)
.foregroundColor(Color.white)
.multilineTextAlignment(.center)