Skip to content

Instantly share code, notes, and snippets.

@michaelevensen
Created October 11, 2022 08:06
Show Gist options
  • Save michaelevensen/1d3951773e1627228b5e222d1abc0ba7 to your computer and use it in GitHub Desktop.
Save michaelevensen/1d3951773e1627228b5e222d1abc0ba7 to your computer and use it in GitHub Desktop.
Great way to size a `SwiftUI` image.
Image(image)
.resizable()
.aspectRatio(contentMode: .fill)
.frame(height: 500)
.frame(minWidth: 0, maxWidth: .infinity)
.clipped()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment