Skip to content

Instantly share code, notes, and snippets.

@dbolella
Created March 16, 2020 20:51
Show Gist options
  • Save dbolella/2293d27ab2949043896a16f4ff425a2e to your computer and use it in GitHub Desktop.
Save dbolella/2293d27ab2949043896a16f4ff425a2e to your computer and use it in GitHub Desktop.
SwiftUI: A New Starting Point into iOS Development
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image("profilepic")
.resizable()
.aspectRatio(contentMode: .fit)
Text("Danny Bolella")
}
.padding()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment