라이브중 이미지 정렬 수정

AS-IS : 상단 정렬
TO-BE : 가운데 정렬
This commit is contained in:
Yu Sung 2023-12-27 00:33:09 +09:00
parent 1c09f6a055
commit a66f76f9a6
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ struct LiveNowItemView: View {
KFImage(URL(string: item.coverImageUrl))
.resizable()
.scaledToFill()
.frame(width: width, height: height, alignment: .top)
.frame(width: width, height: height, alignment: .center)
.cornerRadius(4.7)
.clipped()
@ -73,7 +73,7 @@ struct LiveNowItemView: View {
KFImage(URL(string: item.creatorProfileImage))
.resizable()
.scaledToFill()
.frame(width: 21.3, height: 21.3, alignment: .top)
.frame(width: 21.3, height: 21.3, alignment: .center)
.clipShape(Circle())
Text("\(item.creatorNickname)")