// // OrderListView.swift // SodaLive // // Created by klaus on 2023/08/24. // import SwiftUI struct OrderListView: View { let items: [GetAudioContentOrderListItem] var body: some View { VStack(spacing: 0) { HStack(spacing: 0) { Text("콘텐츠 보관함") .appFont(size: 18, weight: .bold) .foregroundColor(Color(hex: "eeeeee")) Spacer() Text("전체보기") .appFont(size: 11, weight: .medium) .foregroundColor(Color.graybb) .onTapGesture { AppState.shared.setAppStep(step: .orderListAll) } } VStack(spacing: 13.3) { ForEach(0..