// // ContentMainMyStashView.swift // SodaLive // // Created by klaus on 2023/08/11. // import SwiftUI struct ContentMainMyStashView: View { let items: [GetAudioContentMainItem] var body: some View { VStack(alignment: .leading, spacing: 13.3) { HStack(spacing: 0) { Text("내 보관함") .font(.custom(Font.bold.rawValue, size: 18.3)) .foregroundColor(Color(hex: "eeeeee")) Spacer() Text("전체보기") .font(.custom(Font.light.rawValue, size: 11.3)) .foregroundColor(Color(hex: "bbbbbb")) .onTapGesture { AppState.shared.setAppStep(step: .orderListAll) } } ScrollView(.horizontal, showsIndicators: false) { LazyHStack(alignment: .top, spacing: 13.3) { ForEach(0..