// // 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("최근") .font(.custom(Font.preBold.rawValue, size: 24)) .foregroundColor(.button) Text(" 종료한 라이브") .font(.custom(Font.preBold.rawValue, size: 24)) .foregroundColor(.white) } .padding(.horizontal, 24) ScrollView(.horizontal, showsIndicators: false) { HStack(spacing: 16) { ForEach(0..