I want to display a SwiftUI Image with a number. I might do so like this:
let number = 13
Image(systemName: "\(number).square.fill")
However, not every number has an SF Symbol — what if I wanted to display 134.square.fill
but discovered that there isn't one, crashing the app?
How can I check if an SF Symbol exists without crashing the app?