1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// // LongText.swift // SwiftyCropDemo // // Created by Leonid Zolotarev on 1/24/24. // import SwiftUI struct LongText: View { let title: String var body: some View { Text(title) .frame(maxWidth: .infinity) } } #Preview { LongText(title: "title") }