Swiftpack.co - jrsaruo/UIKitComponents as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by jrsaruo.
jrsaruo/UIKitComponents 1.0.4
Reusable UI components built with UIKit.
⭐️ 2
🕓 30 weeks ago
iOS tvOS
.package(url: "https://github.com/jrsaruo/UIKitComponents.git", from: "1.0.4")

UIKitComponents

Reusable UI components built with UIKit.

Requirements

  • iOS 13.0+ / tvOS 13.0+
  • Swift 5.6+

Components

TextViewWithPlaceholder

UITextView with a placeholder.

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:

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

and add UIKitComponents as a dependency for your target:

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

Finally, add import UIKitComponents in your source code.

GitHub

link
Stars: 2
Last commit: 30 weeks ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

Release 1.0.4
30 weeks ago

What's Changed

🧰 Maintenance

Other Changes

Full Changelog: https://github.com/jrsaruo/UIKitComponents/compare/1.0.3...1.0.4

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics