Skip to content

Instantly share code, notes, and snippets.

@BLCKBIRDS
Last active August 9, 2019 09:46
Show Gist options
  • Save BLCKBIRDS/383e8096127e6cc86e3e49e3ed390aa9 to your computer and use it in GitHub Desktop.
Save BLCKBIRDS/383e8096127e6cc86e3e49e3ed390aa9 to your computer and use it in GitHub Desktop.
struct ContentView : View {
var body: some View {
VStack {
WelcomeText()
Image("userImage")
.resizable()
.aspectRatio(contentMode: .fill)
.frame(width: 150, height: 150)
.clipped()
.cornerRadius(150)
.padding(.bottom, 75)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment