美文网首页
flutter for web 打包及 本地服务

flutter for web 打包及 本地服务

作者: 十年开发初学者 | 来源:发表于2022-10-11 15:58 被阅读0次

打包前先执行

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 打包及 本地服务

      本文链接:https://www.haomeiwen.com/subject/wshzartx.html