Skip to content

Instantly share code, notes, and snippets.

@RosayGaspard
Created January 28, 2020 08:11
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 RosayGaspard/d2561f39f4a75d8b62027e7f0e03b1cc to your computer and use it in GitHub Desktop.
Save RosayGaspard/d2561f39f4a75d8b62027e7f0e03b1cc to your computer and use it in GitHub Desktop.
struct ContentView: View {
var body: some View {
VStack{
Image("lock")
.resizable()
.aspectRatio(contentMode: .fill)
.frame(width: 200.0, height: 200.0)
.cornerRadius(90.0)
Text("I am protected by a login page.")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment