flutter输入颜色枚举卡顿假死

AndroidStudio 3.3.2 遇到 flutter输入颜色枚举卡顿假死,目前没好的解决方案,可以设置显示时间或者关闭popup窗口显示文档,这样就不会卡顿了

下面示例代码在输入

Colors.的时候,智能提示会卡死编辑器

Widget build(BuildContext context) {
    return Scaffold(appBar: AppBar(title: "登录",elevation: 0,),
    backgroundColor: Colors.white)
  }

我是macbook本,所以是在AndroidStudio->Preferences->Editor->General->Code Completion->[Show the documentation popup in 1000ms] 取消该项勾选

原文地址:https://www.cnblogs.com/wyxy2005/p/11263106.html