// // SeriesByChannelView.swift // SodaLive // // Created by klaus on 2/21/25. // import SwiftUI struct SeriesByChannelView: View { let title: String let creatorList: [ContentCreatorResponse] let seriesList: [SeriesListItem] let onClickCreator: (Int) -> Void @State private var selectedCreatorId = 0 var body: some View { VStack(alignment: .leading, spacing: 13.3) { Text(title) .font(.custom(Font.bold.rawValue, size: 18.3)) .foregroundColor(Color(hex: "eeeeee")) .padding(.horizontal, 13.3) ScrollView(.horizontal) { HStack(spacing: 22) { ForEach(0..