Skip to content

Instantly share code, notes, and snippets.

@culjo
Created June 23, 2019 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save culjo/d7053e86c8583ba5c24117a9b0c213aa to your computer and use it in GitHub Desktop.
Save culjo/d7053e86c8583ba5c24117a9b0c213aa to your computer and use it in GitHub Desktop.
VStack {
Image("logo")
.resizable()
.aspectRatio(contentMode: ContentMode.fit)
.frame(width: 74.0, height: 74.0)
.padding(Edge.Set.bottom, 20)
Text("Login").bold().font(.title)
Text("Explore the world of Swift UI")
.font(.subheadline)
.padding(EdgeInsets(top: 0, leading: 0, bottom: 70, trailing: 0))
TextField($loginViewModel.email, placeholder: Text("Email"))
.padding()
.background(Color("flash-white"))
.cornerRadius(4.0)
.padding(EdgeInsets(top: 0, leading: 0, bottom: 15, trailing: 0))
}.padding()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment