当前位置:网站首页>Flutter first experience
Flutter first experience
2022-04-21 07:49:00 【LingDong Jey】
background
In today's < geek >APP I saw a 《 Use Flutter Quickly build a mobile application integrating beauty and high performance 》 Introduction to , I want to try for a moment , And he found Flutter Official website (https://flutter.cn/) And practice it step by step .
manual
Installation and environment configuration | Flutter Chinese document | Flutter Chinese developer website Flutter Installation and Getting Started tutorial , download Windows、macOS、Linux and Chrome OS Systematic Flutter SDK.
https://flutter.cn/docs/get-started/install Installation record
1、 obtain Flutter SDK, Download and install on my MacOS 10.14.4
2、 Configure environment variables
# Open profile
> cd ~
> open .bash_profile
# Add environment variables ( Fill in the first line flutter Actual installation path )
export PATH=/Users/mac/tools/flutter/bin:$PATH
export PUB_HOSTED_URL=https://mirrors.tuna.tsinghua.edu.cn/dart-pub
export FLUTTER_STORAGE_BASE_URL=https://mirrors.tuna.tsinghua.edu.cn/flutter
# After installation , Use the following command to diagnose flutter Installation
> flutter doctor
Development tool configuration
1、 Development tools use :VScode
2、 install flutter plug-in unit
Initial experience of development
- Invoke View > Command Palette.
- Type “flutter”, and select the Flutter: New Project.
- Select Application.
- Create or select the parent directory for the new project folder.
- Enter a project name, such as
myapp, and press Enter. - Wait for project creation to complete and the
main.dartfile to appear.
Install the above steps , Will generate a set of flutter engineering , Do the following :

Operation engineering :

Running effect ( Slow start-up , The hot load of subsequent development is fast ):

Initial experience completed , Follow up according to < Official website > Refer to and continue to write small applications .
版权声明
本文为[LingDong Jey]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204210630313147.html
边栏推荐
猜你喜欢

第五站孔孟之乡-----------走迷宫之最短路径

ReportViewer的RDLC打印报表怎么动态加载参数、图片、背景图

Steps for umlet beginners

leetcode 59.螺旋矩阵Ⅱ

STM32系统和自定义bootloader的实现和应用

云服务器使用frp将本机(win10/win11)内网上的apache映射到外网
![[question 31] create two identical pets](/img/3a/de5321bddd8fb24765a532a88d6809.png)
[question 31] create two identical pets

【牛客刷题18】 查找两个字符串a,b中的最长公共子串

sqlserver 两个表之间进行模糊查询,sqlserver 导入excel数据步骤

Enterprise service bus -- Introduction to muleesb
随机推荐
You cannot set a form field before rendering a field associated with the value
asp.net js 实现动态添加文件上传
PHP 对象转数组
leetcode 209. Minimum length subarray
php 中文转化为英文首字母
禁用谷歌跨域的一个办法
【牛客刷题18】 查找两个字符串a,b中的最长公共子串
PHP去除字符串开头或末尾逗号
GoLang学习资源清单
db2相关操作知识点积累及WINDOWS环境DB2连接远程数据库实例
php 输出两个指定日期中间的所有时间
使用Hutool的流方式读取Excel大文件
Files and Directories
EF 去重操作
标准函数返回值iResult
Defer
div点击折叠收缩
三级菜单动态生成
Creating Oracle database in Navicat tool
音乐 下载 等文件名都变成了相同的名字的解决方法
https://flutter.cn/docs/get-started/install