Skip to content

Instantly share code, notes, and snippets.

@MichaelSDavid
Last active May 26, 2021 11:02
Show Gist options
  • Save MichaelSDavid/32a45773db89394947e9861cee7a8283 to your computer and use it in GitHub Desktop.
Save MichaelSDavid/32a45773db89394947e9861cee7a8283 to your computer and use it in GitHub Desktop.
Basic SwiftUI template for Playgrounds
import SwiftUI
import PlaygroundSupport
struct ContentView: View {
var body: some View {
// Placeholder
Text("Hello World")
}
}
PlaygroundPage.current.setLiveView(ContentView())
// Playgrounds -> New -> Blank Playground
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment