Skip to content

Instantly share code, notes, and snippets.

@KiranJasvanee
Last active December 26, 2019 06:47
Show Gist options
  • Save KiranJasvanee/e50f2bba7aec1d87ca33ab5e25bec1de to your computer and use it in GitHub Desktop.
Save KiranJasvanee/e50f2bba7aec1d87ca33ab5e25bec1de to your computer and use it in GitHub Desktop.
GettingStartedwith-SwiftUI-2
import SwiftUI
struct ContentView: View {
var body: some View {
Text("Hello, World!")
}
}
#if DEBUG
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment