지금 라이브 중 19금 방송 방패 표시

This commit is contained in:
Yu Sung
2026-01-30 18:03:00 +09:00
parent f9d84efbe1
commit 9e97c301b8
3 changed files with 30 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "ic_shield.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 474 B

View File

@@ -52,7 +52,15 @@ struct LiveNowItemView: View {
} }
Spacer() Spacer()
if item.isAdult {
Image("ic_shield")
.resizable()
.frame(width: 20, height: 20)
} }
}
.padding(.top, 10)
.padding(.horizontal, 10)
VStack(spacing: 0) { VStack(spacing: 0) {
ZStack(alignment: .bottom) { ZStack(alignment: .bottom) {
@@ -121,8 +129,8 @@ struct LiveNowItemView: View {
.padding(.bottom, 2) .padding(.bottom, 2)
} }
} }
.padding(14)
} }
.padding(10)
.frame(width: resolvedWidth, height: resolvedHeight, alignment: .top) .frame(width: resolvedWidth, height: resolvedHeight, alignment: .top)
.background(Color(hex: "263238")) .background(Color(hex: "263238"))
.cornerRadius(16) .cornerRadius(16)