// // ContentMainCompletedSeriesView.swift // SodaLive // // Created by klaus on 2/21/25. // import SwiftUI struct ContentMainCompletedSeriesView: View { let itemList: [SeriesListItem] let onClickMore: () -> Void var body: some View { VStack(spacing: 13.3) { HStack(spacing: 0) { Text("완결 시리즈") .font(.custom(Font.bold.rawValue, size: 18.3)) .foregroundColor(.grayee) Spacer() Image("ic_forward") .onTapGesture { onClickMore() } } .padding(.horizontal, 13.3) ScrollView(.horizontal, showsIndicators: false) { HStack(spacing: 13.3) { ForEach(0..