parent
9a74567643
commit
1c09f6a055
|
@ -108,7 +108,7 @@ struct LiveRoomChatItemView: View {
|
||||||
}
|
}
|
||||||
|
|
||||||
Text(chatMessage.chat)
|
Text(chatMessage.chat)
|
||||||
.font(.system(size: 14))
|
.font(.system(size: 15))
|
||||||
.foregroundColor(.white)
|
.foregroundColor(.white)
|
||||||
.multilineTextAlignment(.leading)
|
.multilineTextAlignment(.leading)
|
||||||
.lineLimit(nil)
|
.lineLimit(nil)
|
||||||
|
|
|
@ -40,17 +40,17 @@ struct LiveRoomDonationChatItemView: View {
|
||||||
|
|
||||||
HStack(spacing: 0) {
|
HStack(spacing: 0) {
|
||||||
Text("\(chatMessage.can)캔")
|
Text("\(chatMessage.can)캔")
|
||||||
.font(.system(size: 13))
|
.font(.system(size: 15))
|
||||||
.foregroundColor(Color(hex: "fdca2f"))
|
.foregroundColor(Color(hex: "fdca2f"))
|
||||||
|
|
||||||
Text("을 후원하셨습니다.")
|
Text("을 후원하셨습니다.")
|
||||||
.font(.system(size: 13))
|
.font(.system(size: 15))
|
||||||
.foregroundColor(.white)
|
.foregroundColor(.white)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !chatMessage.donationMessage.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
|
if !chatMessage.donationMessage.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
|
||||||
Text("\"\(chatMessage.donationMessage)\"")
|
Text("\"\(chatMessage.donationMessage)\"")
|
||||||
.font(.system(size: 13))
|
.font(.system(size: 15))
|
||||||
.foregroundColor(.white)
|
.foregroundColor(.white)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,17 +38,17 @@ struct LiveRoomRouletteDonationChatItemView: View {
|
||||||
.foregroundColor(.white)
|
.foregroundColor(.white)
|
||||||
}
|
}
|
||||||
|
|
||||||
HStack(spacing: 0) {
|
|
||||||
Text("[\(chatMessage.rouletteResult)]")
|
Text("[\(chatMessage.rouletteResult)]")
|
||||||
.font(.system(size: 13))
|
.font(.system(size: 15))
|
||||||
.foregroundColor(Color(hex: "ffe500"))
|
.foregroundColor(Color(hex: "ffe500"))
|
||||||
|
|
||||||
|
+
|
||||||
|
|
||||||
Text(" 당첨!")
|
Text(" 당첨!")
|
||||||
.font(.system(size: 13))
|
.font(.system(size: 15))
|
||||||
.foregroundColor(.white)
|
.foregroundColor(.white)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
.padding(13)
|
.padding(13)
|
||||||
.frame(width: screenSize().width - 86, alignment: .leading)
|
.frame(width: screenSize().width - 86, alignment: .leading)
|
||||||
.background(Color(hex: "c25264"))
|
.background(Color(hex: "c25264"))
|
||||||
|
|
Loading…
Reference in New Issue