시리즈 전체보기 페이지
This commit is contained in:
@@ -23,15 +23,20 @@ struct UserProfileSeriesView: View {
|
||||
Text("전체보기")
|
||||
.font(.custom(Font.light.rawValue, size: 11.3))
|
||||
.foregroundColor(Color.grayee)
|
||||
.onTapGesture {}
|
||||
.onTapGesture {
|
||||
AppState.shared
|
||||
.setAppStep(step: .seriesAll(creatorId: creatorId))
|
||||
}
|
||||
}
|
||||
|
||||
HStack(spacing: 13.3) {
|
||||
ForEach(0..<items.count, id: \.self) {
|
||||
SeriesListBigItemView(item: items[$0])
|
||||
let item = items[$0]
|
||||
SeriesListBigItemView(item: item)
|
||||
.contentShape(Rectangle())
|
||||
.onTapGesture {
|
||||
AppState.shared
|
||||
.setAppStep(step: .seriesAll(creatorId: creatorId))
|
||||
.setAppStep(step: .seriesDetail(seriesId: item.seriesId))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user