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)) }