iOS web view
Toolchain-checked integration example — validate lifecycle in your app
import Foundation
import SwiftUI
import WebKit
struct PrioSmithFeedbackView: UIViewRepresentable {
private let portalURL = URL(string: "https://app.priosmith.example/p/PROJECT_SLUG/board")!
func makeUIView(context: Context) -> WKWebView {
let webView = WKWebView(frame: .zero)
webView.load(URLRequest(url: portalURL))
return webView
}
func updateUIView(_ webView: WKWebView, context: Context) {}
}