// // CIInvalidJSONView.swift // SimpleX (iOS) // // Created by JRoberts on 29.12.2022. // Copyright © 2022 SimpleX Chat. All rights reserved. // import SwiftUI struct CIInvalidJSONView: View { var json: String @State private var showJSON = false var body: some View { HStack(alignment: .bottom, spacing: 0) { Text("invalid data") .foregroundColor(.red) .italic() } .padding(.horizontal, 12) .padding(.vertical, 6) .background(Color(uiColor: .tertiarySystemGroupedBackground)) .cornerRadius(18) .textSelection(.disabled) .onTapGesture { showJSON = true } .sheet(isPresented: $showJSON) { invalidJSONView(json) } } } func invalidJSONView(_ json: String) -> some View { VStack(alignment: .leading, spacing: 16) { Button { showShareSheet(items: [json]) } label: { Image(systemName: "square.and.arrow.up") } .frame(maxWidth: .infinity, alignment: .trailing) ScrollView { Text(json) } } .frame(maxHeight: .infinity) .padding() } struct CIInvalidJSONView_Previews: PreviewProvider { static var previews: some View { CIInvalidJSONView(json: "{}") } }