// // AudioContentReportDialogView.swift // SodaLive // // Created by klaus on 2023/08/13. // import SwiftUI struct AudioContentReportDialogView: View { @Binding var isShowing: Bool let confirmAction: (String) -> Void @State private var selectedIndex: Int? = nil let reasons = [ "괴롭힘 및 사이버 폭력", "개인정보 침해", "명의도용", "폭력적 위협", "아동학대", "보호대상 집단에 대한 증오심 표현", "스팸 및 사기" ] var body: some View { ZStack { Color.black .opacity(0.7) .ignoresSafeArea() .onTapGesture { isShowing = false } VStack(spacing: 13.3) { Text("콘텐츠 신고") .font(.custom(Font.bold.rawValue, size: 18.3)) .foregroundColor(Color(hex: "eeeeee")) VStack(spacing: 13.3) { ForEach(0..