Skip to content

Commit

Permalink
[FIX/#178] PlaylistView 사진 잘림 문제 해결 / 기본이미지 적용
Browse files Browse the repository at this point in the history
Co-authored-by: Junu-Pak <[email protected]>
Co-authored-by: WooFeather <[email protected]>
  • Loading branch information
WooFeather and Junu-Park committed Nov 3, 2024
1 parent 54e951b commit a9bbdd1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PLAT/PLAT.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand Down
8 changes: 8 additions & 0 deletions PLAT/PLAT/Presentaion/Playlist/PlaylistView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}
Expand Down

0 comments on commit a9bbdd1

Please sign in to comment.