나머지 .font를 .appFont로 변경하여 한국어 텍스트와 다른 언어 텍스트에 다른 폰트 적용
This commit is contained in:
@@ -14,15 +14,15 @@ struct LiveRoomJoinChatItemView: View {
|
||||
var body: some View {
|
||||
HStack(spacing: 0) {
|
||||
Text("'")
|
||||
.font(.system(size: 12))
|
||||
.appFont(size: 12)
|
||||
.foregroundColor(Color.grayee)
|
||||
|
||||
Text(chatMessage.nickname)
|
||||
.font(.system(size: 12, weight: .bold))
|
||||
.appFont(size: 12, weight: .bold)
|
||||
.foregroundColor(Color.mainYellow)
|
||||
|
||||
Text("'님이 입장하셨습니다.")
|
||||
.font(.system(size: 12))
|
||||
.appFont(size: 12)
|
||||
.foregroundColor(Color.grayee)
|
||||
}
|
||||
.padding(.vertical, 6.7)
|
||||
|
||||
Reference in New Issue
Block a user