// // 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 = I18n.ContentDetail.ReportDialog.reasons var body: some View { ZStack { Color.black .opacity(0.7) .ignoresSafeArea() .onTapGesture { isShowing = false } VStack(spacing: 13.3) { Text(I18n.ContentDetail.ReportDialog.title) .appFont(size: 18.3, weight: .bold) .foregroundColor(Color(hex: "eeeeee")) VStack(spacing: 13.3) { ForEach(0..