其他分享
首页 > 其他分享> > Flutter开发之——构建Web应用,2021吊打面试官系列

Flutter开发之——构建Web应用,2021吊打面试官系列

作者:互联网

{

“enable-web”: true

}

3.2 查看支持的设备(浏览器)

开启Web支持后,运行flutter devices命令(类似于Android中的adb devices),会列出所有支持的浏览器信息(QQ浏览器和IE浏览器虽未列出,但也支持)

flutter devices

2 connected devices:

Chrome (web) • chrome • web-javascript • Google Chrome 87.0.4280.141

Edge (web) • edge • web-javascript • Microsoft Edge 87.0.664.75

四 创建一个支持Web运行的新应用


4.1 集成开发环境(IDE)

4.1.1 创建Web项目(Android Studio为例)

依次点击:File——>New Flutter Project——>Flutter Application——>配置Flutter应用

4.1.2 IDE运行Flutter web

从要运行到的设备下拉列表中,选择要运行到的chrome,点击运行

运行后,程序自动打开chrome浏览器的效果图

4.2 命令行

4.2.1 创建Web项目

打开终端,输入下面的指令,创建Web新应用

flutter create myapp

cd myapp

4.2.2 运行Web项目

指定浏览器

flutter run -d chrome

flutter run -d edge

不指定浏览器

flutter run -d web-server

运行过程

flutter run -d web-server

Launching lib\main.dart on Web Server in debug mode…

Waiting for connection from debug service on Web Server… 14.9s

lib\main.dart is being served at http://localhost:61015

The web-server device requires the Dart Debug Chrome extension for debugging. Consider using the Chrome or Edge devices for an improved development workflow.

Warning: Flutter’s support for web development is not stable yet and hasn’t

been thoroughly tested in production environments.

For more information see https://flutter.dev/web

To hot restart changes while running, press “r” or “R”.

在浏览器中输入http://localhost:61015查看运行效果

4.2.3 Build命令

创建发行构建

flutter run --release

flutter build web

输出文件在build/web目录下,包括需要一起提供的assets资源文件

五 向已有的应用添加Web支持


《Android学习笔记总结+最新移动架构视频+大厂安卓面试真题+项目实战源码讲义》

【docs.qq.com/doc/DSkNLaERkbnFoS0ZF】 完整内容开源分享


的应用添加Web支持


《Android学习笔记总结+最新移动架构视频+大厂安卓面试真题+项目实战源码讲义》

【docs.qq.com/doc/DSkNLaERkbnFoS0ZF】 完整内容开源分享


标签:Web,面试官,浏览器,web,Flutter,吊打,run,flutter
来源: https://blog.csdn.net/m0_64604367/article/details/121818453