SwiftUI

[SwiftUI] TextEditor

clamp 2022. 11. 30. 14:07

여러줄의 텍스트를 입력받기 위해서는 TextEditor를 사용하면 된다.

struct ContentView: View{
    @State var text: String = ""
    
    var body: some View{
        VStack{
            TextEditor("Enter name", text: $text)
                .pdding()
                .backgrount(Color(uiColor: .secondarySystemBackgrount))
                
                Text("\(text)")
            }
        }
    }