本文介绍了如何在颤抖中删除文本字段光标气泡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在文本字段中键入内容时消除抖动中的气泡.有什么解决办法吗?
How to remove this bubble in flutter while typing in the text field. Any solution for this?
推荐答案
TextField将 enableInteractiveSelection
属性设置为false可以解决此问题.
TextField set enableInteractiveSelection
property to false can resolve this issue.
enableInteractiveSelection: true,
这篇关于如何在颤抖中删除文本字段光标气泡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!