UIKitPlus icon indicating copy to clipboard operation
UIKitPlus copied to clipboard

🏰 Declarative UIKit with LivePreview for iOS9+ (best alternative to SwiftUI)

Results 19 UIKitPlus issues
Sort by recently updated
recently updated
newest added

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) } ``` ![Simulator Screen Shot - iPhone 11 - 2022-04-19 at 00 41 09](https://user-images.githubusercontent.com/3138493/163841458-d8f091b9-1789-4456-ad22-675c47d73308.png) 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...