구매목록 - 콘텐츠 크리에이터 표시

This commit is contained in:
Yu Sung
2023-09-04 23:10:34 +09:00
parent 05f5a4fe82
commit 707b6f804c
3 changed files with 10 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ struct OrderListItemView: View {
HStack(spacing: 10) {
KFImage(URL(string: item.coverImageUrl))
.resizable()
.frame(width: 66.7, height: 66.7, alignment: .center)
.frame(width: 80, height: 80, alignment: .center)
.clipped()
.cornerRadius(5.3)
@@ -38,6 +38,11 @@ struct OrderListItemView: View {
.cornerRadius(2.6)
}
Text(item.creatorNickname)
.font(.custom(Font.medium.rawValue, size: 9))
.foregroundColor(Color(hex: "777777"))
.padding(.top, 2.6)
Text(item.title)
.font(.custom(Font.medium.rawValue, size: 12))
.foregroundColor(Color(hex: "d2d2d2"))