Blog
All Courses
Books
Kids Game Programming
Categories
Login
Blog
All Courses
Books
Kids Game Programming
Categories
Login
ScaledToFit
.scaledToFit() modifier is used to make image fit the view while maintaining original aspect ratio:
struct ImageExample: View { var body: some View { Image("dt") .resizable() .scaledToFit() } }