라이브 상세, 라이브 룸 - 19금 표시를 이모지로 변경

This commit is contained in:
Yu Sung
2026-02-02 19:00:00 +09:00
parent 5159debf7f
commit 36bf533269
2 changed files with 5 additions and 26 deletions

View File

@@ -76,17 +76,7 @@ struct LiveDetailView: View {
ScrollView(.vertical, showsIndicators: false) { ScrollView(.vertical, showsIndicators: false) {
VStack(spacing: 0) { VStack(spacing: 0) {
HStack(spacing: 5.3) { HStack(spacing: 5.3) {
if room.isAdult { Text(room.isAdult ? "🔞 \(room.title)" : room.title)
Text("19")
.appFont(size: 12, weight: .medium)
.foregroundColor(Color(hex: "e33621"))
.padding(.horizontal, 5.3)
.padding(.vertical, 3.3)
.background(Color(hex: "601d14"))
.cornerRadius(2.6)
}
Text(room.title)
.appFont(size: 18.3, weight: .bold) .appFont(size: 18.3, weight: .bold)
.foregroundColor(Color(hex: "eeeeee")) .foregroundColor(Color(hex: "eeeeee"))
} }

View File

@@ -54,21 +54,10 @@ struct LiveRoomInfoCreatorView: View {
} }
VStack(alignment: .leading, spacing: 6.7) { VStack(alignment: .leading, spacing: 6.7) {
HStack(spacing: 2.7) { Text(isAdult ? "🔞 \(roomTitle)" : roomTitle)
if isAdult { .appFont(size: 12, weight: .bold)
Text("19") .foregroundColor(.grayee)
.appFont(size: 8, weight: .bold) .lineLimit(1)
.foregroundColor(.white)
.padding(.vertical, 2.8)
.padding(.horizontal, 2)
.background(Circle().foregroundColor(Color.mainRed2))
}
Text(roomTitle)
.appFont(size: 12, weight: .bold)
.foregroundColor(.grayee)
.lineLimit(1)
}
HStack(spacing: 5.3) { HStack(spacing: 5.3) {
Text(creatorNickname) Text(creatorNickname)