Skip to content

Instantly share code, notes, and snippets.

@prafullakumar
Created June 23, 2020 06:10
Show Gist options
  • Save prafullakumar/1506c985334112b9b13b0ac2c88fdd64 to your computer and use it in GitHub Desktop.
Save prafullakumar/1506c985334112b9b13b0ac2c88fdd64 to your computer and use it in GitHub Desktop.
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