How do I insert letters in between a TextField
's text in flutter?
Example
Text in the text field: I run faster than him.
Expected Result
I want to move the curser before the run
and type can
.
TextField(
controller: _controller,
onChanged: (value) {
// Do something when the text changes
},
decoration: InputDecoration(
labelText: 'Enter your text',
),
),