SwiftUI โฉ Controls โฉ Text โฉ extensions
// 2022.02.24 extension Text { /// `Text(symbol: "alarm")` init(symbol name: String) { self.init(Image(systemName: name)) } }
SF Symbols can be used in Text.
selected button with underline
Last updated 2 years ago