From a9bbdd106d6098f29df3c9a5e0ceceb389df61b0 Mon Sep 17 00:00:00 2001 From: Woohyun Jo Date: Sun, 3 Nov 2024 14:58:31 +0900 Subject: [PATCH] =?UTF-8?q?[FIX/#178]=20PlaylistView=20=EC=82=AC=EC=A7=84?= =?UTF-8?q?=20=EC=9E=98=EB=A6=BC=20=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= =?UTF-8?q?=20/=20=EA=B8=B0=EB=B3=B8=EC=9D=B4=EB=AF=B8=EC=A7=80=20?= =?UTF-8?q?=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Junu-Pak Co-authored-by: WooFeather --- PLAT/PLAT.xcodeproj/project.pbxproj | 8 ++++---- PLAT/PLAT/Presentaion/Playlist/PlaylistView.swift | 8 ++++++++ 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/PLAT/PLAT.xcodeproj/project.pbxproj b/PLAT/PLAT.xcodeproj/project.pbxproj index 5f1a6085..96ce8a38 100644 --- a/PLAT/PLAT.xcodeproj/project.pbxproj +++ b/PLAT/PLAT.xcodeproj/project.pbxproj @@ -1317,7 +1317,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"PLAT/Preview Content\""; - DEVELOPMENT_TEAM = 9XG4S4XZWN; + DEVELOPMENT_TEAM = MXGCKXDXUM; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = PLAT/App/Info.plist; @@ -1337,7 +1337,7 @@ "@executable_path/Frameworks", ); MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = com.letsplat.thinkyside; + PRODUCT_BUNDLE_IDENTIFIER = com.letsplat; PRODUCT_NAME = "$(TARGET_NAME)"; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; @@ -1359,7 +1359,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"PLAT/Preview Content\""; - DEVELOPMENT_TEAM = 9XG4S4XZWN; + DEVELOPMENT_TEAM = MXGCKXDXUM; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = PLAT/App/Info.plist; @@ -1379,7 +1379,7 @@ "@executable_path/Frameworks", ); MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = com.letsplat.thinkyside; + PRODUCT_BUNDLE_IDENTIFIER = com.letsplat; PRODUCT_NAME = "$(TARGET_NAME)"; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SUPPORTS_MACCATALYST = NO; diff --git a/PLAT/PLAT/Presentaion/Playlist/PlaylistView.swift b/PLAT/PLAT/Presentaion/Playlist/PlaylistView.swift index 20f28dc1..a56dab6d 100644 --- a/PLAT/PLAT/Presentaion/Playlist/PlaylistView.swift +++ b/PLAT/PLAT/Presentaion/Playlist/PlaylistView.swift @@ -166,8 +166,16 @@ private struct PlaylistImageView: View { .placeholder { RoundedRectangle(cornerRadius: 12) .frame(width: 68, height: 68) + .foregroundStyle( + LinearGradient( + colors: [.orange, .indigo], + startPoint: .top, + endPoint: .bottom + ) + ) } .resizable() + .scaledToFill() .frame(width: 68, height: 68) .clipShape(RoundedRectangle(cornerRadius: 12)) }