-
-
Save sturdysturge/1257ca3067d5d788a56bed0d94305fdd to your computer and use it in GitHub Desktop.
TextEditingView
This file contains 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
struct TextEditingView: View { | |
@State private var fullText: String = "This is some editable text..." | |
var body: some View { | |
TextEditor(text: $fullText) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment