< 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 14.2
If you created a SwiftUI Image
and it isn’t being resized, look for code like this:
Image("cornwall")
.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("cornwall")
.resizable()
.frame(width: 300, height: 300)
SPONSORED From March 20th to 26th, you can join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.