Skip to content

SwiftUI-Plus/TextView

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
September 24, 2021 15:01
August 29, 2021 21:12
September 22, 2021 11:24
August 29, 2021 21:12
September 7, 2021 13:53

TextView

Also available as a part of my SwiftUI+ Collection – just add it to Xcode 13+

Provides a SwiftUI multi-line TextView implementation with support for iOS v13+

WIP

  • Improved formatting support

Features

  • Configure all properties via modifiers
  • Multi-line text
  • Placeholder
  • No predefined design, full-flexibility to design in Swift UI
  • UIFont extensions to give you SwiftUI Font APIs
  • Auto-sizes height to fit content as you type

Example

TextView($text)
    .placeholder("Enter some text") { view in
        view.foregroundColor(.gray)
    }
    .padding(10)
    .overlay(
        RoundedRectangle(cornerRadius: 10)
            .stroke(lineWidth: 1)
            .foregroundColor(Color(.placeholderText))
    )
    .padding()

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/TextView.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

About

Provides a SwiftUI multi-line TextView implementation including support for auto-sizing. (iOS)

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Languages