ExpandableText

1.0.0

App Store-like SwiftUI expandable text view with "more" button, iOS 13+, fully customizable
n3d1117/ExpandableText

What's New

Release 1.0.0

2023-02-25T16:13:24Z

ExpandableText

build swift-version ios-version xcode-version license

An expandable text view that displays a truncated version of its contents with a "show more" button that expands the view to show the full contents.

iOS 13+ compatible, fully customizable, written in SwiftUI.

Installation

Available via the Swift Package Manager. Requires iOS 13+.

https://github.com/n3d1117/ExpandableText

Features

  • Customizable line limit
  • Customizable font, color, and more button appearance with SwiftUI-like modifiers
  • Automatically hide more button if the whole text fits within the view
  • Support right-to-left languages
  • Support custom expand animation
  • Automatically trim multiple new lines when truncated (can be disabled)

Usage

Basic usage

import ExpandableText

let loremIpsum = """
Lorem ipsum dolor sit amet, consectetur adipiscing 
elit, sed do eiusmod tempor incididunt ut labore et 
dolore magna aliqua. Ut enim ad minim veniam, quis 
nostrud exercitation ullamco laboris nisi ut aliquip 
ex ea commodo consequat. Duis aute irure dolor in 
reprehenderit in voluptate velit esse cillum dolore 
eu fugiat nulla pariatur.
"""

ExpandableText(loremIpsum)
  .border(.red)

Basic usage demo

Customization options

ExpandableText(loremIpsum)
  .font(.headline)
  .foregroundColor(.secondary)
  .lineLimit(4)
  .moreButtonText("read more")
  .moreButtonFont(.headline.bold())
  .moreButtonColor(.red)
  .expandAnimation(.easeInOut(duration: 2))
  .trimMultipleNewlinesWhenTruncated(false)
  .border(.red)

Customization demo

Credits

License

Available under The Unlicense license. See LICENSE file for further information.

Description

  • Swift Tools 5.7.0
View More Packages from this Author

Dependencies

  • None
Last updated: Wed Apr 24 2024 04:05:49 GMT-0900 (Hawaii-Aleutian Daylight Time)