feat(home): 사용하지 않는 큐레이션 영역 제거
This commit is contained in:
@@ -327,39 +327,6 @@ struct HomeTabView: View {
|
||||
}
|
||||
}
|
||||
|
||||
if !viewModel.curationList.isEmpty {
|
||||
ForEach(0..<viewModel.curationList.count, id: \.self) { curationIndex in
|
||||
let curation = viewModel.curationList[curationIndex]
|
||||
VStack(alignment: .leading, spacing: 16) {
|
||||
HStack(spacing: 0) {
|
||||
Text(curation.title)
|
||||
.font(.custom(Font.preBold.rawValue, size: 24))
|
||||
.foregroundColor(.white)
|
||||
}
|
||||
.padding(.horizontal, 24)
|
||||
|
||||
ScrollView(.horizontal, showsIndicators: false) {
|
||||
LazyHStack(spacing: 16) {
|
||||
ForEach(0..<curation.items.count, id: \.self) { index in
|
||||
let item = curation.items[index]
|
||||
ContentItemView(
|
||||
item: AudioContentMainItem(
|
||||
contentId: item.contentId,
|
||||
creatorId: item.creatorId,
|
||||
title: item.title,
|
||||
coverImageUrl: item.coverImageUrl,
|
||||
creatorNickname: item.creatorNickname,
|
||||
isPointAvailable: item.isPointAvailable
|
||||
)
|
||||
)
|
||||
}
|
||||
}
|
||||
.padding(.horizontal, 24)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Text("""
|
||||
- 회사명 : 주식회사 소다라이브
|
||||
|
||||
|
||||
Reference in New Issue
Block a user