Skip to content

Instantly share code, notes, and snippets.

@andrew-levy
Last active August 24, 2022 15:23
Show Gist options
  • Save andrew-levy/985f179944bca71d3c5450ce095b26e0 to your computer and use it in GitHub Desktop.
Save andrew-levy/985f179944bca71d3c5450ce095b26e0 to your computer and use it in GitHub Desktop.
import SwiftUI
struct App: View {
@State var text = ""
var body: some View {
VStack(alignment: .leading) {
Text("Some cool text").font(.title)
Image(systemName: "bolt.fill").frame(width: 100, height: 100)
TextField("Name", text: $text)
}
.background(Color(.systemGray6))
.padding(.leading, 30)
.cornerRadius(20)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment