// // 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("팔로잉 채널") .appFont(size: 24, weight: .bold) .foregroundColor(.white) Spacer() } .frame(maxWidth: .infinity, alignment: .leading) .padding(.horizontal, 24) ScrollView(.horizontal, showsIndicators: false) { HStack(spacing: 16) { ForEach(0..