// // UserReportDialogView.swift // SodaLive // // Created by klaus on 2023/08/11. // import SwiftUI struct UserReportDialogView: View { @Binding var isShowing: Bool let confirmAction: (String) -> Void @State private var selectedIndex: Int? = nil let reasons = I18n.Report.userReasons var body: some View { ZStack { Color.black .opacity(0.7) .ignoresSafeArea() .onTapGesture { isShowing = false } VStack(spacing: 13.3) { Text(I18n.Report.userReportTitle) .appFont(size: 16.7, weight: .medium) .foregroundColor(Color(hex: "eeeeee")) VStack(spacing: 13.3) { ForEach(0..