// // UserProfileSeriesView.swift // SodaLive // // Created by klaus on 4/29/24. // import SwiftUI struct UserProfileSeriesView: View { let creatorId: Int let creatorNickname: String let items: [SeriesListItem] var body: some View { VStack(alignment: .leading, spacing: 13.3) { HStack(spacing: 0) { Text("시리즈") .appFont(size: 26, weight: .bold) .foregroundColor(Color.white) Spacer() Text("전체보기") .appFont(size: 14, weight: .light) .foregroundColor(Color(hex: "78909C")) .onTapGesture { AppState.shared .setAppStep(step: .seriesAll(creatorId: creatorId, creatorNickname: creatorNickname)) } } .padding(.horizontal, 24) ScrollView(.horizontal, showsIndicators: false) { HStack(alignment: .top, spacing: 13.3) { ForEach(0..