Skip to content

Instantly share code, notes, and snippets.

View Banck's full-sized avatar

Sakhabaev Egor Banck

View GitHub Profile
@niaeashes
niaeashes / DebugJsonView.swift
Last active March 15, 2024 05:57
SwiftUI JSON View for Debugging
#if canImport(SwiftUI) && DEBUG
import SwiftUI
struct DebugJsonView: View {
let json: JsonElement
init(_ json: String) {
self.json = JsonElement.parse(json)