Skip to content

Instantly share code, notes, and snippets.

View activcoding's full-sized avatar
:octocat:
114% Productivity

Tom Ludwig activcoding

:octocat:
114% Productivity
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 {