為您解碼網(wǎng)站建設(shè)的點點滴滴
發(fā)表日期:2018-12 文章編輯:小燈 瀏覽次數(shù):2103
1、獲取Flutter SDK
下載地址:https://flutter.io/docs/development/tools/sdk/archive?tab=macos#macos
解壓安裝包到你想安裝的目錄。
2、配置環(huán)境變量:
open ~/.bash_profile
在當(dāng)期用戶目錄下創(chuàng)建.bash_profile文件,如果該文件已經(jīng)存在,則直接打開。將以下代碼復(fù)制到.bash_profile中,
export PUB_HOSTED_URL=https://pub.flutter-io.cn export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
完成之后點擊保存,在命令行中執(zhí)行source.bash_profile,
然后輸入flutter -h進(jìn)行測試。
flutter -h
image.png3、執(zhí)行命令flutter doctor ,命令的作用是檢測還需要安裝的依賴。:
flutter doctor
image.png 按照檢測結(jié)果的說明,如果有[!] ? 標(biāo)志,表示本行檢測不通過,需要做一些設(shè)置或者安裝一些軟件。
需要運行:
flutter doctor --android-licens
image.png 這里界面會要求輸入Y/N,一路輸入Y就行了。
4、配置iOS環(huán)境運行命令:
brew updatebrew install --HEAD libimobiledevicebrew install ideviceinstaller ios-deploy cocoapodspod setup
這個步驟有點慢...
6、安裝idea插件
(轉(zhuǎn)自網(wǎng)友的圖)
7、安裝完成后重啟idea,在新建項目的時候左側(cè)菜單欄有Dart和Flutter說明這兩個安裝完成了,右邊紅色方框設(shè)置Flutter SDK。
如果我們只想簡單的實現(xiàn)”Hello World”,用下面的代碼替換掉main.dart里面的代碼即可。
import 'package:flutter/material.dart'; void main(){ runApp(new Center(child: new Text('Hello Flutter!'))); }
然后選擇模擬器運行即可。
日期:2018-10 瀏覽次數(shù):7336
日期:2018-12 瀏覽次數(shù):4406
日期:2018-07 瀏覽次數(shù):4942
日期:2018-12 瀏覽次數(shù):4242
日期:2018-09 瀏覽次數(shù):5578
日期:2018-12 瀏覽次數(shù):9994
日期:2018-11 瀏覽次數(shù):4880
日期:2018-07 瀏覽次數(shù):4647
日期:2018-05 瀏覽次數(shù):4929
日期:2018-12 瀏覽次數(shù):4386
日期:2018-10 瀏覽次數(shù):5207
日期:2018-12 瀏覽次數(shù):6280
日期:2018-11 瀏覽次數(shù):4537
日期:2018-08 瀏覽次數(shù):4657
日期:2018-11 瀏覽次數(shù):12719
日期:2018-09 瀏覽次數(shù):5646
日期:2018-12 瀏覽次數(shù):4910
日期:2018-10 瀏覽次數(shù):4252
日期:2018-11 瀏覽次數(shù):4592
日期:2018-12 瀏覽次數(shù):6132
日期:2018-06 瀏覽次數(shù):4074
日期:2018-08 瀏覽次數(shù):5517
日期:2018-10 瀏覽次數(shù):4520
日期:2018-12 瀏覽次數(shù):4606
日期:2018-07 瀏覽次數(shù):4434
日期:2018-12 瀏覽次數(shù):4573
日期:2018-06 瀏覽次數(shù):4464
日期:2018-11 瀏覽次數(shù):4443
日期:2018-12 瀏覽次數(shù):4321
日期:2018-12 瀏覽次數(shù):5348
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.