Skip to content

Instantly share code, notes, and snippets.

@twissmueller
Created October 27, 2020 04:11
Show Gist options
  • Save twissmueller/225d0adc51c2d1b4425c175289429c64 to your computer and use it in GitHub Desktop.
Save twissmueller/225d0adc51c2d1b4425c175289429c64 to your computer and use it in GitHub Desktop.
Template for creating a SwiftUI-based Playground
import SwiftUI
import PlaygroundSupport
struct ContentView: View {
var body: some View {
Text("Hello World")
}
}
PlaygroundPage.current.setLiveView(ContentView())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment