Full sovereign stack in your browser. No App Store. No download.
Open Swift Playgrounds and paste:
import SwiftUI
import WebKit
struct SovereignHarness: View {
var body: some View {
SovereignWebView().ignoresSafeArea()
}
}
struct SovereignWebView: UIViewRepresentable {
let url = URL(string:
"https://snapkittywest.github.io/sovereign-harness/")!
func makeUIView(context: Context) -> WKWebView {
let wv = WKWebView(frame: .zero)
wv.load(URLRequest(url: url))
return wv
}
func updateUIView(_ wv: WKWebView, context: Context) {}
}
import PlaygroundSupport
PlaygroundPage.current.setLiveView(SovereignHarness())
https://snapkittywest.github.io/sovereign-harness/Ω = TRUST ∧ CODE