flutter textfield set cursor position after inputformatter code example
Example: flutter textfield cursor position
controller.text = someString;
controller.selection = TextSelection.fromPosition(TextPosition(offset: controller.text.length));
controller.text = someString;
controller.selection = TextSelection.fromPosition(TextPosition(offset: controller.text.length));