Swiftpack.co - krzyzanowskim/SwiftUI.TextEdit as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by krzyzanowskim.
krzyzanowskim/SwiftUI.TextEdit 0.0.1
SwiftUI proof-of-concept text edit component
⭐️ 86
🕓 2 years ago
iOS macOS
.package(url: "https://github.com/krzyzanowskim/SwiftUI.TextEdit.git", from: "0.0.1")

SwiftUI TextEdit View

A proof-of-concept text edit component in SwiftUI & CoreText. No UIKit, No AppKit, no UITextView/NSTextView/UITextField involved.

Note Due to SwiftUI limitations (as of May 2021) it's not possible to handle keystrokes just with SwiftUI. To overcome this limitation, the UIKeyboardViewController is responsible for handling keys and forward to SwiftUI codebase.

If you have questions or want to reach to me, use this thread: https://twitter.com/krzyzanowskim/status/1269402396217745410

Authors

Marcin Krzyzanowski @krzyzanowskim

Screenshots

TextEdit 2021-05-03 19_00_33

Usage/Examples

struct TextEditingView: View {
    @State private var text = "type here...\n"
    @State private var font = UIFont.preferredFont(forTextStyle: .body) as CTFont
    @State private var carretWidth = 2.0 as CGFloat

    var body: some View {
        TextEdit(
            text: $text,
            font: $font,
            carretWidth: $carretWidth
        )
    }
}

FAQ

How?

CoreText + SwiftUI.

Why?

For fun and profit.

Related

Here are some related projects

CoreTextSwift

GitHub

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

Release Notes

2 years ago
  • Initial release

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