Skip to content

Instantly share code, notes, and snippets.

@MadeBugs
Created December 1, 2022 05:48
Show Gist options
  • Save MadeBugs/2c759ac91034456ce0d59f380b562af2 to your computer and use it in GitHub Desktop.
Save MadeBugs/2c759ac91034456ce0d59f380b562af2 to your computer and use it in GitHub Desktop.
[输入框光标置于最后] Dart
// 一般赋值使用的是_controller.text = "demo";
// 如果要使光标置于最后要使用下面这种方式
_controller.value = TextEditingValue(
text: result,
selection: TextSelection.fromPosition(TextPosition(
affinity: TextAffinity.downstream,
offset: result.length
))
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment