나머지 .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

@@ -37,22 +37,22 @@ struct LiveRoomRouletteDonationChatItemView: View {
VStack(alignment: .leading, spacing: 6.7) {
HStack(spacing: 0) {
Text(chatMessage.nickname)
.font(.system(size: 12))
.appFont(size: 12)
.foregroundColor(.white)
Text("님의 룰렛 결과?")
.font(.system(size: 12, weight: .light))
.appFont(size: 12, weight: .light)
.foregroundColor(.white)
}
Text("[\(chatMessage.rouletteResult)]")
.font(.system(size: 15))
.appFont(size: 15)
.foregroundColor(Color(hex: "ffe500"))
+
Text(" 당첨!")
.font(.system(size: 15))
.appFont(size: 15)
.foregroundColor(.white)
}
}