Created
December 1, 2022 05:48
-
-
Save MadeBugs/2c759ac91034456ce0d59f380b562af2 to your computer and use it in GitHub Desktop.
[输入框光标置于最后] Dart
This file contains hidden or 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
// 一般赋值使用的是_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