From 7b3a3d2a80060e1233f8ec9cca0632dc0fa5ede2 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Wed, 26 Feb 2025 16:57:48 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=ED=94=8C?= =?UTF-8?q?=EB=A0=88=EC=9D=B4=EC=96=B4=20-=20=EC=9E=AC=EC=83=9D=EB=AA=A9?= =?UTF-8?q?=EB=A1=9D=20=EB=B3=B4=EC=9D=BC=20=EB=95=8C=20=EC=A0=9C=EB=AA=A9?= =?UTF-8?q?=EA=B3=BC=20=ED=81=AC=EB=A6=AC=EC=97=90=EC=9D=B4=ED=84=B0=20?= =?UTF-8?q?=EC=98=81=EC=97=AD=EA=B9=8C=EC=A7=80=20=EC=9E=AC=EC=83=9D?= =?UTF-8?q?=EB=AA=A9=EB=A1=9D=EC=9D=B4=20=EC=B0=A8=EC=A7=80=ED=95=98?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Content/Player/ContentPlayerView.swift | 42 ++++++++++--------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/SodaLive/Sources/Content/Player/ContentPlayerView.swift b/SodaLive/Sources/Content/Player/ContentPlayerView.swift index ea4fbab..f9777c5 100644 --- a/SodaLive/Sources/Content/Player/ContentPlayerView.swift +++ b/SodaLive/Sources/Content/Player/ContentPlayerView.swift @@ -26,28 +26,30 @@ struct ContentPlayerView: View { .onTapGesture { isShowing = false } } - Text(playerManager.title) - .font(.custom(Font.medium.rawValue, size: 16)) - .foregroundColor(.grayee) - .frame(maxWidth: .infinity, alignment: .leading) - .padding(.top, 16) - - HStack(spacing: 5.3) { - KFImage(URL(string: playerManager.creatorProfileUrl)) - .cancelOnDisappear(true) - .downsampling(size: CGSize(width: 26.7, height: 26.7)) - .resizable() - .scaledToFill() - .frame(width: 26.7, height: 26.7) - .clipShape(Circle()) + if !playerManager.isShowPlaylist { + Text(playerManager.title) + .font(.custom(Font.medium.rawValue, size: 16)) + .foregroundColor(.grayee) + .frame(maxWidth: .infinity, alignment: .leading) + .padding(.top, 16) - Text(playerManager.nickname) - .font(.custom(Font.medium.rawValue, size: 13.3)) - .foregroundColor(.gray90) - - Spacer() + HStack(spacing: 5.3) { + KFImage(URL(string: playerManager.creatorProfileUrl)) + .cancelOnDisappear(true) + .downsampling(size: CGSize(width: 26.7, height: 26.7)) + .resizable() + .scaledToFill() + .frame(width: 26.7, height: 26.7) + .clipShape(Circle()) + + Text(playerManager.nickname) + .font(.custom(Font.medium.rawValue, size: 13.3)) + .foregroundColor(.gray90) + + Spacer() + } + .padding(.top, 21) } - .padding(.top, 21) Spacer()