gpt4 book ai didi

flutter 错误 : W/IInputConnectionWrapper: getExtractedText on inactive InputConnection

转载 作者:行者123 更新时间:2023-12-03 02:48:14 24 4
gpt4 key购买 nike

我有一个 flutter 错误:

W/IInputConnectionWrapper: getExtractedText on inactive InputConnection

当我从 TextEditingController 输入中清除 TextField 中的文本时,就会发生这种情况。

这是我的明文功能,它有效:
_onClear() {
setState(() {
WidgetsBinding.instance
.addPostFrameCallback((_) => _textController.clear());
});
}





child: TextField(
maxLines: 2,
keyboardType: TextInputType.text,
textInputAction: TextInputAction.done,
autofocus: false, //setting this to true,false, or removing has no effect
controller: _textController,
textAlign: TextAlign.left,
decoration: InputDecoration(
labelText: "Enter",
hintText: "Enter",
hintStyle: TextStyle(
fontStyle: FontStyle.italic, color:
Colors.blueGrey),
suffix: IconButton(
icon: Icon(Icons.cancel),
onPressed: _onClear,
),
prefixIcon: Icon(Icons.search),
border: OutlineInputBorder(
borderRadius:
BorderRadius.all(Radius.circular(25.0)),
),
),
)), //textfield

用户可以在文本字段中键入内容,单击图像 (UrlLauncher),然后返回到表单并仍然在文本字段中看到相同的文本输入。一切都按其应有的方式工作,并且应用程序运行时没有其他错误。

这个错误是我必须担心的吗,我是否仍然可以将最终的应用程序提交给商店但有错误,还是必须是正确的?我不知道该怎么做。请原谅我缺乏知识,我只是想学习这一切,但被难住了。关于 Flutter 的这个问题似乎没有其他答案。

最佳答案

如果您使用 PHP 脚本插入数据,那么您可能缺少像 这样的引号。 '$FiledName' .因为在纠正之后这对我有用。谢谢

关于 flutter 错误 : W/IInputConnectionWrapper: getExtractedText on inactive InputConnection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57838831/

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