leavky
leavky
I sloved the problem, give the TextFiled a controller. ``` ReorderableSliverList( // delegate: ReorderableSliverChildListDelegate(_rows), // ), delegate: ReorderableSliverChildBuilderDelegate( (BuildContext context, int index) { // return _rows[index]; TextEditingController textEditingController; textEditingController =...
click textFiled and when focus in textFiled you can copy/past
社区的这个问题是我写的,看到说是2.64是正常的,我降级后将生成的文件和2.7生成的文件对比了下,发现了问题。 2.6.4生成的:  2.7 以及 2.7.1 生成的:  通过对比发现2.7 生成的多了orm标签 现在有两个解决办法: 1. 修改生成的文件,将orm标签删除 2. 不修改生成的文件,在自己上一级结构体中写上 orm 标签。  希望可以改下,官方工具不生成这个orm标签
> [@leavky](https://github.com/leavky) Can you confirm this works on Flutter's default TextField? I believe I bug some time ago where it wasn't positioned at the caret position, but I couldn't find...