Skip to content

Instantly share code, notes, and snippets.

View X901's full-sized avatar

Basel Baragabah X901

View GitHub Profile
@auramagi
auramagi / ReadMore.swift
Last active June 25, 2024 23:06
SwiftUI read more component. Requires iOS 16.
import SwiftUI
struct ContentView: View {
var text = "long text"
@State private var lines = 3.0
var body: some View {
ScrollView {
ReadMore(lineLimit: Int(lines)) {