Check out our newest app on the App Store! 100% SwiftUI. Milracks – AlbeBaubles:
Category: swiftui
Too easy
A great example of how simple it is to construct a user interface in swiftUI
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?
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