나머지 .font를 .appFont로 변경하여 한국어 텍스트와 다른 언어 텍스트에 다른 폰트 적용
This commit is contained in:
@@ -102,7 +102,7 @@ struct LiveRoomChatItemView: View {
|
||||
HStack(spacing: 5) {
|
||||
if chatMessage.rank == -3 {
|
||||
Text("스탭")
|
||||
.font(.system(size: 10))
|
||||
.appFont(size: 10)
|
||||
.foregroundColor(.white)
|
||||
.padding(2)
|
||||
.background(Color(hex: "4999e3"))
|
||||
@@ -110,12 +110,12 @@ struct LiveRoomChatItemView: View {
|
||||
}
|
||||
|
||||
Text(chatMessage.nickname)
|
||||
.font(.system(size: 12, weight: .light))
|
||||
.appFont(size: 12, weight: .light)
|
||||
.foregroundColor(.white)
|
||||
}
|
||||
|
||||
Text(chatMessage.chat)
|
||||
.font(.system(size: 15))
|
||||
.appFont(size: 15)
|
||||
.foregroundColor(.white)
|
||||
.multilineTextAlignment(.leading)
|
||||
.lineLimit(nil)
|
||||
|
||||
Reference in New Issue
Block a user