Skip to content

Instantly share code, notes, and snippets.

@abdullahnettoor
Created April 11, 2022 07:03
Show Gist options
  • Select an option

  • Save abdullahnettoor/84e2d4e0fe20947551a532b3f0d990d3 to your computer and use it in GitHub Desktop.

Select an option

Save abdullahnettoor/84e2d4e0fe20947551a532b3f0d990d3 to your computer and use it in GitHub Desktop.
Set cursor position at the end of the value in flutter in TextField
controller.text = someString;
controller.selection = TextSelection.fromPosition(TextPosition(offset: controller.text.length));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment