๐Text(symbol:)
swiftโฉ custom โฉ extension โฉ Text+ โฉ Text(symbol:)
// 2022.02.24
extension Text {
    /// `Text(symbol: "alarm")`
    init(symbol name: String) {
        self.init(Image(systemName: name))
    }
}- SF Symbols can be used in Text. 
Last updated
Was this helpful?