Created
October 11, 2022 08:06
-
-
Save michaelevensen/1d3951773e1627228b5e222d1abc0ba7 to your computer and use it in GitHub Desktop.
Great way to size a `SwiftUI` image.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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