Where can I find all the system images that are available in the SFSymbols? for example in the SwiftUI Image
initializer Image(systemName:)
?
I\'
Assuming you have Xcode installed, you can also preview all the images without needing to download a separate app.
The trick is you need to view them in a Storyboard, not a SwiftUI Canvas.
Add a UIImageView to your storyboard, then press the dropdown arrow near Image. You'll see the entire list of images provided by Apple:
Copy the name of an image, and then use it just like other answers mention above:
Image(systemName: "square.and.arrow.up")