SwiftUI, ready for primetime?

Things have been slow at AlbeBaubles lately so I thought I’d tackle an old client app that hasn’t been updated in ages and rewrite in 100% SwiftUI. Look art how little code is needed to show a grid of vowels glyphs in a grid with the ability to play them.  Simple.   Yes, SwiftUI is… Continue reading SwiftUI, ready for primetime?

Published
Categorized as swiftui

SwiftUI – NSAttributedString

While it’s true SwiftUI doesn’t currently provide easy access to NSAttributedString, you can concatenate string literals assigning attributes to each literal individually: Text(“Regular, “) + Text(“Italic, “).italic() + Text(“Bold, “).bold() + Text(“Blue”).foreground(.blue) Not pretty, but it works