KFImage를 이용하여 불러오는 이미지 다운샘플링
This commit is contained in:
@@ -38,6 +38,13 @@ struct SelectRecipientView: View {
|
||||
ForEach(viewModel.users, id: \.self) { user in
|
||||
HStack(spacing: 13.3) {
|
||||
KFImage(URL(string: user.profileImageUrl))
|
||||
.cancelOnDisappear(true)
|
||||
.downsampling(
|
||||
size: CGSize(
|
||||
width: 46.7,
|
||||
height: 46.7
|
||||
)
|
||||
)
|
||||
.resizable()
|
||||
.scaledToFill()
|
||||
.frame(width: 46.7, height: 46.7, alignment: .top)
|
||||
|
Reference in New Issue
Block a user