UIKitPlus
UIKitPlus copied to clipboard
🏰 Declarative UIKit with LivePreview for iOS9+ (best alternative to SwiftUI)
https://developer.apple.com/documentation/uikit/uistackview/2866023-setcustomspacing
Fixed func hash(into hasher: inout Hasher) require public added public static func == (lhs: Self, rhs: Self)
This PR fixed #31, according the solution of https://github.com/MihaelIsaev/UIKitPlus/commit/e9e3c187c5cfa0ffc4eb15f598e57643181a6881 The reason why https://github.com/MihaelIsaev/UIKitPlus/commit/e9e3c187c5cfa0ffc4eb15f598e57643181a6881 does not work has been commented on the code review page. https://github.com/MihaelIsaev/UIKitPlus/commit/e9e3c187c5cfa0ffc4eb15f598e57643181a6881#r71829040 Since I do not very...
This works well ``` view.body { UVStack { UView().background(.random) UView().background(.random) UView().background(.random) }.edgesToSuperview().alignment(.fill).distribution(.fillEqually) } ```  This will not work....
When using a bad image url for a `UImage` : ```swift UImage(url: $viewModel.map({ $0?.image }), loader: .defaultFade) ``` The existing image is kept, this is a problem when reusing a...