Created
June 23, 2020 06:10
-
-
Save prafullakumar/1506c985334112b9b13b0ac2c88fdd64 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
struct ContentView: View { | |
@State private var text = "Test Multiline" | |
var body: some View { | |
TextEditor(text: $text) | |
.padding() | |
.font(.subheadline) | |
} | |
} | |
struct ContentView_Previews: PreviewProvider { | |
static var previews: some View { | |
ContentView() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment