Flutter 踩坑总结

记录个人开发flutter遇到的坑

Proxy Configuration ! NO_PROXY is not set

  解决方案:

  1. 在环境变量中配置NO_PROXY参数
1
export NO_PROXY=localhost,127.0.0.1
  1. 重启电脑

  Finished with error: Failed to establish connection with the application instance in Chrome

  解决方案:

1
2
3
flutter clean
flutter pub cache repair
flutter run -d chrome --release