Skip to content

Instantly share code, notes, and snippets.

View cslosiu's full-sized avatar
😃
work hard!

Siu LO cslosiu

😃
work hard!
  • Hong Kong
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 {