Skip to content

Instantly share code, notes, and snippets.

View activcoding's full-sized avatar
👾
Coding

Tom Ludwig activcoding

👾
Coding
View GitHub Profile
@activcoding
activcoding / Webview.swift
Created August 24, 2021 18:47 — forked from joshbetz/Webview.swift
A simple SwiftUI Webview
import SwiftUI
import WebKit
struct ContentView: View {
var body: some View {
Webview(url: URL(string: "https://google.com")!)
}
}
struct Webview: UIViewRepresentable {