From 419feeab6dfddeb1cceedee0f1b3297186e38e5e Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Thu, 3 Jul 2025 15:56:41 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=BB=A4=EB=AE=A4=EB=8B=88=ED=8B=B0=20?= =?UTF-8?q?=EC=A0=84=EC=B2=B4=EB=B3=B4=EA=B8=B0=20-=20gif=20=EC=9E=AC?= =?UTF-8?q?=EC=83=9D=20=EB=90=98=EB=8F=84=EB=A1=9D=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CreatorCommunity/All/CreatorCommunityAllItemView.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllItemView.swift b/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllItemView.swift index a8a2371..f0e62fe 100644 --- a/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllItemView.swift +++ b/SodaLive/Sources/Explorer/Profile/CreatorCommunity/All/CreatorCommunityAllItemView.swift @@ -7,6 +7,7 @@ import SwiftUI import Kingfisher +import SDWebImageSwiftUI struct CreatorCommunityAllItemView: View { @@ -99,10 +100,11 @@ struct CreatorCommunityAllItemView: View { if item.price <= 0 || item.existOrdered { if let imageUrl = item.imageUrl { ZStack { - KFImage(URL(string: imageUrl)) + AnimatedImage(url: URL(string: imageUrl)) .resizable() + .aspectRatio(contentMode: .fit) .frame(maxWidth: .infinity) - .scaledToFit() + .clipped() if let audioUrl = item.audioUrl { Image(playManager.isPlaying && playManager.currentPlayingContentId == item.postId ? "btn_audio_content_pause" : "btn_audio_content_play")