// // UserProfileSeriesView.swift // SodaLive // // Created by klaus on 4/29/24. // import SwiftUI struct UserProfileSeriesView: View { let creatorId: Int let items: [SeriesListItem] var body: some View { VStack(alignment: .leading, spacing: 13.3) { HStack(spacing: 0) { Text("시리즈") .font(.custom(Font.bold.rawValue, size: 18.3)) .foregroundColor(Color.grayee) Spacer() Text("전체보기") .font(.custom(Font.light.rawValue, size: 11.3)) .foregroundColor(Color.grayee) .onTapGesture { AppState.shared .setAppStep(step: .seriesAll(creatorId: creatorId)) } } ScrollView(.horizontal, showsIndicators: false) { HStack(alignment: .top, spacing: 13.3) { ForEach(0..