From 6c7790cbff04b1f3e9c091be8ca0ff0ee95fefd4 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Mon, 14 Jul 2025 23:06:39 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=A9=94=EC=9D=B8=20=ED=99=88=20-=20?= =?UTF-8?q?=EC=A7=80=EA=B8=88=20=EB=9D=BC=EC=9D=B4=EB=B8=8C=20=EC=A4=91=20?= =?UTF-8?q?-=20=EC=95=84=EC=9D=B4=ED=85=9C=20=EB=B0=B0=EA=B2=BD=EC=83=89?= =?UTF-8?q?=20=EB=B3=80=EA=B2=BD=20-=20=EB=9D=BC=EC=9D=B4=EB=B8=8C=20?= =?UTF-8?q?=EC=A0=9C=EB=AA=A9=EA=B3=BC=20=ED=81=AC=EB=A6=AC=EC=97=90?= =?UTF-8?q?=EC=9D=B4=ED=84=B0=20=EB=8B=89=EB=84=A4=EC=9E=84=20=EC=88=9C?= =?UTF-8?q?=EC=84=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Home/HomeLiveItemView.swift | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/SodaLive/Sources/Home/HomeLiveItemView.swift b/SodaLive/Sources/Home/HomeLiveItemView.swift index 0b0923d..ed65dd2 100644 --- a/SodaLive/Sources/Home/HomeLiveItemView.swift +++ b/SodaLive/Sources/Home/HomeLiveItemView.swift @@ -34,11 +34,11 @@ struct HomeLiveItemView: View { } VStack(alignment: .leading, spacing: 4) { - Text(item.title) + Text(item.creatorNickname) .font(.custom(Font.preRegular.rawValue, size: 18)) .foregroundColor(.white) - Text(item.creatorNickname) + Text(item.title) .font(.custom(Font.preRegular.rawValue, size: 16)) .foregroundColor(Color(hex: "B0BEC5")) } @@ -46,23 +46,12 @@ struct HomeLiveItemView: View { .padding(.horizontal, 14) .padding(.vertical, 10) .frame(width: 282, alignment: .leading) - .background( - RadialGradient( - gradient: Gradient(colors: [Color(hex: "5ACDE1"), Color(hex: "2A339D")]), - center: .center, - startRadius: 0, - endRadius: 200 - ) - ) + .background(Color(hex: "2A339D")) .cornerRadius(999) .overlay( RoundedRectangle(cornerRadius: 999) .strokeBorder( - LinearGradient( - colors: [Color(hex: "9AE2F6"), Color(hex: "FFFFFF")], - startPoint: .topLeading, - endPoint: .bottomTrailing - ), + Color(hex: "FFFFFF"), lineWidth: 1 ) )