Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jrsaruo/uikitcomponents

Reusable UI components built with UIKit.
https://github.com/jrsaruo/uikitcomponents

ios textview-placeholder ui-components uikit

Last synced: about 1 month ago
JSON representation

Reusable UI components built with UIKit.

Awesome Lists containing this project

README

        

# UIKitComponents

Reusable UI components built with UIKit.

## Requirements

- iOS 13.0+ / tvOS 13.0+
- Swift 5.6+

## Components

### `TextViewWithPlaceholder`

`UITextView` with a placeholder.

```swift
let textView = TextViewWithPlaceholder()
textView.placeholder = "[email protected]"

// The appearance of the placeholder follows that of text view.
textView.font = .preferredFont(forTextStyle: .body)
textView.textAlignment = .center
textView.textContainerInset = .zero
textView.textContainer.lineFragmentPadding = 0
// etc...
```

## Using UIKitComponents in your project

To use the `UIKitComponents` library in a SwiftPM project, add the following line to the dependencies in your `Package.swift` file:

```swift
.package(url: "https://github.com/jrsaruo/UIKitComponents", from: "1.0.4"),
```

and add `UIKitComponents` as a dependency for your target:

```swift
.target(name: "", dependencies: [
.product(name: "UIKitComponents", package: "UIKitComponents"),
// other dependencies
]),
```

Finally, add `import UIKitComponents` in your source code.