ExpandableText ? (SwiftUI)


version


Swift: 5.1+


iOS: 13.0+


license


Expand the text with the “more” button

example

Get Started

import SwiftUI
import ExpandableText

struct ExpandableText_Test: View {
    
    var body: some View {
        ExpandableText(text: "Do you think you're living an ordinary life? You are so mistaken it's difficult to even explain. The mere fact that you exist makes you extraordinary. The odds of you existing are less than winning the lottery, but here you are. Are you going to let this extraordinary opportunity pass?")
            .font(.body)//optional
            .foregroundColor(.primary)//optional
            .lineLimit(3)//optional
            .animation(.easeOut)//optional
            .padding(.horizontal, 24)//optional
    }
}

Modifier(optional)

Modifier Default
.font(_ font: Font) .body
.lineLimit(_ lineLimit: Int) 3
.foregroundColor(_ color: Color) .primary
.expandButtonText(_ text: String) "more"
.expandButtonColor(_ color: Color) .blue

GitHub

View Github