커스텀 폰트 pretendard-bold, gmarket-bold를 사용하고 있던 것을 appFont 모디파이어를 사용하여 한국어는 pretendard, 그 외에는 시스템 폰트를 사용하도록 수정
This commit is contained in:
@@ -87,7 +87,7 @@ struct LiveDetailView: View {
|
||||
}
|
||||
|
||||
Text(room.title)
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(Color(hex: "eeeeee"))
|
||||
}
|
||||
.frame(width: proxy.size.width - 26.7, alignment: .leading)
|
||||
@@ -103,7 +103,7 @@ struct LiveDetailView: View {
|
||||
|
||||
if room.price > 0 {
|
||||
Text("\(room.price)")
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(Color(hex: "eeeeee"))
|
||||
|
||||
Image("ic_can")
|
||||
@@ -112,7 +112,7 @@ struct LiveDetailView: View {
|
||||
.padding(.leading, 6.7)
|
||||
} else {
|
||||
Text("무료")
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(Color(hex: "eeeeee"))
|
||||
}
|
||||
}
|
||||
@@ -325,7 +325,7 @@ struct LiveDetailView: View {
|
||||
VStack(spacing: 16.7) {
|
||||
HStack(spacing: 13.3) {
|
||||
Text("수정")
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(Color.white)
|
||||
.padding(.vertical, 16)
|
||||
.padding(.horizontal, 27)
|
||||
@@ -341,7 +341,7 @@ struct LiveDetailView: View {
|
||||
}
|
||||
|
||||
Text("라이브 시작")
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(Color.white)
|
||||
.padding(.vertical, 16)
|
||||
.frame(maxWidth: .infinity)
|
||||
@@ -370,7 +370,7 @@ struct LiveDetailView: View {
|
||||
.frame(width: screenSize().width - 26.7)
|
||||
} else if room.isPaid {
|
||||
Text("예약완료")
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(Color(hex: "777777"))
|
||||
.padding(.vertical, 16)
|
||||
.padding(.horizontal, 99)
|
||||
@@ -383,7 +383,7 @@ struct LiveDetailView: View {
|
||||
AppState.shared.back()
|
||||
} label: {
|
||||
Text("예약하기")
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(Color.white)
|
||||
.padding(.vertical, 16)
|
||||
.padding(.horizontal, 99)
|
||||
@@ -398,7 +398,7 @@ struct LiveDetailView: View {
|
||||
AppState.shared.back()
|
||||
} label: {
|
||||
Text("지금 참여하기")
|
||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||
.appFont(size: 18.3, weight: .bold)
|
||||
.foregroundColor(Color.white)
|
||||
.padding(.vertical, 16)
|
||||
.padding(.horizontal, 79)
|
||||
|
||||
Reference in New Issue
Block a user