Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SwiftUI-Plus/UIKitHelpers
A set of UIKit helpers that simplify the usage of UIKit view's and controller's in SwiftUI. Many of these helpers are useful even in a pure UIKit project.
https://github.com/SwiftUI-Plus/UIKitHelpers
swift swiftui uikit
Last synced: about 2 months ago
JSON representation
A set of UIKit helpers that simplify the usage of UIKit view's and controller's in SwiftUI. Many of these helpers are useful even in a pure UIKit project.
- Host: GitHub
- URL: https://github.com/SwiftUI-Plus/UIKitHelpers
- Owner: SwiftUI-Plus
- License: mit
- Created: 2021-09-09T21:10:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-22T10:24:39.000Z (over 3 years ago)
- Last Synced: 2024-11-15T15:43:55.373Z (2 months ago)
- Topics: swift, swiftui, uikit
- Language: Swift
- Homepage: https://benkau.com/packages.json
- Size: 3.91 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
![ios](https://img.shields.io/badge/iOS-13-green)
# UIKit Helpers
> Also available as a part of my [SwiftUI+ Collection](https://benkau.com/packages.json) – just add it to Xcode 13+
A set of UIKit helpers that simplify the usage of UIKit view's and controller's in SwiftUI. Many of these helpers are useful even in a pure UIKit project.
## UIWrapping
```swift
UIWrapping { view in
view.numberOfLines = 0
view.text = "Lets enable\nmultiple lines."
view.textAlignment = .center
}
.background(Color.green)
.fixedSize()
```## UIViewBuilder
Works exactly as you'd expect. Essentially just a UIView version-ish of a `ViewBuilder`.
It improves container-like APIs.
## Installation
The code is packaged as a framework. You can install manually (by copying the files in the `Sources` directory) or using Swift Package Manager (**preferred**)
To install using Swift Package Manager, add this to the `dependencies` section of your `Package.swift` file:
`.package(url: "https://github.com/SwiftUI-Plus/UIKitHelpers.git", .upToNextMinor(from: "1.0.0"))`
## Other Packages
If you want easy access to this and more packages, add the following collection to your Xcode 13+ configuration:
`https://benkau.com/packages.json`