XUI
XUI copied to clipboard
XUI makes modular, testable architectures for SwiftUI apps a breeze!
This PR adds a podspec file, so that XUI is available via CocoaPods as well as Swift Package Manager.
This change introduces a new result builder to allow for the simple creation of reactive APIs. One will be able to create publishers using the following: ```swift @Publish func fetchProject(name:...
I've run into an issue where one of my "view models" has an associated type that itself has an associated type. It looks like it's crashing the Swift compiler and...