Skip to content

Instantly share code, notes, and snippets.

View brianwat's full-sized avatar

Brian Watanabe brianwat

View GitHub Profile
@awunnenb
awunnenb / ContentView.swift
Last active October 19, 2023 21:24
SwiftUI WKWebView und WKNavigationDelegate
// YouTube Video: https://youtu.be/o52XYvwTQU0
import SwiftUI
import WebKit
struct ContentView: View {
let webView = WebView(request: URLRequest(url: URL(string: "https://www.google.com")!))
var body: some View {
VStack {