< How to fix “Missing argument for parameter 'content' in call” | How to fix a Form Picker or a NavigationLink that isn’t tappable > |
Updated for Xcode 12.0
If you created a SwiftUI Image
view and it isn’t being resized, look for code like this:
Image("example-image")
.frame(width: 300, height: 300)
That explicitly sets the image’s frame, but doesn’t mark the image as being resizable. The correct thing to do is add the resizable()
modifier before the frame, like this:
Image("example-image")
.resizable()
.frame(width: 300, height: 300)
SPONSORED From January 26th to 31st you can join a FREE crash course for iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a senior developer!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.