gpt4 book ai didi

flutter - 如何在文本字段中 flutter 的值末尾设置光标位置?

转载 作者:IT王子 更新时间:2023-10-29 06:45:09 25 4
gpt4 key购买 nike

我想在文本字段值的末尾添加 ,00

它在 iOS 设备中运行良好,但在 android 中光标移动到文本字段中值的起点。因此,我无法添加 ,00

最佳答案

我在设置 TextEditingController 时遇到了同样的问题,这对我有用。

controller.text = someString;
controller.selection = TextSelection.fromPosition(TextPosition(offset: controller.text.length));

TextSelection.fromPosition() 执行以下操作(来自文档):

Creates a collapsed selection at the given text position. A collapsedselection starts and ends at the same offset, which means it containszero characters but instead serves as an insertion point in the text.

编辑 - 另一个版本,更短一些,由其他人推荐:

controller.text = someString;
controller.selection =
TextSelection.collapsed(offset: controller.text.length);

关于flutter - 如何在文本字段中 flutter 的值末尾设置光标位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56851701/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com