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