// // SectionRecommendChannelView.swift // SodaLive // // Created by klaus on 2023/08/09. // import SwiftUI import Kingfisher struct SectionRecommendChannelView: View { let items: [GetRecommendChannelResponse] @AppStorage("token") private var token: String = UserDefaults.string(forKey: UserDefaultsKey.token) var body: some View { VStack(spacing: 16) { HStack(spacing: 0) { Text("팔로잉 ") .font(.custom(Font.preBold.rawValue, size: 24)) .foregroundColor(.button) Text("채널") .font(.custom(Font.preBold.rawValue, size: 24)) .foregroundColor(.white) Spacer() } .frame(maxWidth: .infinity, alignment: .leading) .padding(.horizontal, 24) ScrollView(.horizontal, showsIndicators: false) { HStack(spacing: 16) { ForEach(0..