๐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))
}
}
Last updated
Was this helpful?