// // SectionLatestFinishedLiveView.swift // SodaLive // // Created by klaus on 7/22/25. // import SwiftUI struct SectionLatestFinishedLiveView: View { let items: [GetLatestFinishedLiveResponse] @AppStorage("token") private var token: String = UserDefaults.string(forKey: UserDefaultsKey.token) var body: some View { VStack(alignment: .leading, spacing: 16) { HStack(spacing: 0) { Text("최근 종료한 라이브") .appFont(size: 24, weight: .bold) .foregroundColor(.white) } .padding(.horizontal, 24) ScrollView(.horizontal, showsIndicators: false) { HStack(spacing: 16) { ForEach(0..