flutter for web 打包及 本地服务

打包前先执行

flutter clean
flutter pub get
打开速度快,兼容性好
flutter build web --web-renderer html

flutter build web 

打开速度慢,对于复杂的页面兼容性好
flutter build web --web-renderer canvaskit

本地服务

  • 安装python3
  • 终端进入到对应的web文件夹下
  • 执行python3 -m http.server 8000
  • 在浏览器中http://localhost:8000/#/

你可能感兴趣的:(flutter for web 打包及 本地服务)