aboutsummaryrefslogtreecommitdiff
path: root/Demo/SwiftyCropDemo/UIElements/LongText.swift
blob: 77e211a442d78fc0167705777595e1c424b3378f (plain)
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")
}