Refactor views

This commit is contained in:
Arkadiusz Fal
2026-02-09 01:13:02 +01:00
parent 8464464199
commit 612dce6b9f
43 changed files with 143 additions and 125 deletions

View File

@@ -8,12 +8,12 @@
import SwiftUI
struct ExpandableText: View {
let text: String
var lineLimit: Int = 2
@Binding var isExpanded: Bool
@Environment(\.font) private var font
let text: String
var lineLimit: Int = 2
@Binding var isExpanded: Bool
@State private var fullHeight: CGFloat = 0
@State private var truncatedHeight: CGFloat = 0