_speackStop报错
来源:15-11 Flutter AI智能语音搜索功能实现【锦上添花】
咚咚咚咚打
2021-04-19
可以正常识别说话的内容,但是按着什么也不说,或者Cancel就会出这个错误
写回答
1回答
-
CrazyCodeBoy
2021-04-19
有没有加catch呢:
AsrManager.start().then((text) { if (text != null && text.length > 0) { setState(() { speakResult = text; }); Navigator.pop(context); NavigatorUtil.push( context, SearchPage( keyword: speakResult, )); print("----------" + text); } }).catchError((e) { print("----------" + e.toString()); });
022021-04-20
相似问题