KFImage를 이용하여 불러오는 이미지 다운샘플링
This commit is contained in:
@@ -49,6 +49,13 @@ struct LiveRoomProfileItemMasterView: View {
|
||||
VStack(alignment: .leading, spacing: 20) {
|
||||
HStack(spacing: 0) {
|
||||
KFImage(URL(string: profileUrl))
|
||||
.cancelOnDisappear(true)
|
||||
.downsampling(
|
||||
size: CGSize(
|
||||
width: 60,
|
||||
height: 60
|
||||
)
|
||||
)
|
||||
.resizable()
|
||||
.frame(width: 60, height: 60)
|
||||
.clipShape(Circle())
|
||||
@@ -90,6 +97,13 @@ struct LiveRoomProfileItemUserView: View {
|
||||
VStack(spacing: 10) {
|
||||
HStack(spacing: 0) {
|
||||
KFImage(URL(string: profileUrl))
|
||||
.cancelOnDisappear(true)
|
||||
.downsampling(
|
||||
size: CGSize(
|
||||
width: 46.7,
|
||||
height: 46.7
|
||||
)
|
||||
)
|
||||
.resizable()
|
||||
.frame(width: 46.7, height: 46.7)
|
||||
.clipShape(Circle())
|
||||
|
Reference in New Issue
Block a user