// // ContentDetailOtherContentView.swift // SodaLive // // Created by klaus on 2023/08/13. // import SwiftUI struct ContentDetailOtherContentView: View { let title: String let items: [OtherContentResponse] let onClickItem: (Int) -> Void var body: some View { VStack(spacing: 21.3) { Text(title) .font(.custom(Font.bold.rawValue, size: 18.3)) .foregroundColor(Color(hex: "eeeeee")) .frame(maxWidth: .infinity, alignment: .leading) if items.count > 0 { ScrollView(.horizontal, showsIndicators: false) { HStack(spacing: 13.3) { ForEach(0..