leavky

Results 14 comments of 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生成的: ![image](https://github.com/gogf/gf/assets/46547390/1b953b63-9cff-4d3e-aef7-974063a94da6) 2.7 以及 2.7.1 生成的: ![image](https://github.com/gogf/gf/assets/46547390/6355fccb-4c0b-49e1-b549-ad8aa31040e5) 通过对比发现2.7 生成的多了orm标签 现在有两个解决办法: 1. 修改生成的文件,将orm标签删除 2. 不修改生成的文件,在自己上一级结构体中写上 orm 标签。 ![image](https://github.com/gogf/gf/assets/46547390/f0ca3285-c130-428d-86b4-9d8005f6c721) 希望可以改下,官方工具不生成这个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...