已經(jīng)安裝flutter的情況下
1、到你flutter的路徑下面
我自己的路徑 ? cd ~/development
2嫂伞、將flutter工具添加到您的路徑
export PATH="$PATH:`pwd`/flutter/bin"
3方椎、檢查環(huán)境并向終端窗口顯示報告flutter doctor
4聂抢、到你要創(chuàng)建的文件夾路徑
我自己的 cd /Users/laoyanqiao/Desktop/dddd?
5、創(chuàng)建flutter模塊?flutter create --template module my_flutter
6辩尊、用VScode打開該模塊運行查看是否正確
7、打開在同一文件夾下面用xcode創(chuàng)建好的項目康辑。該項目安裝cocopods
8摄欲、打開Podflie 設置如下
platform :ios, '10.0'
flutter_application_path = '../my_flutter'
load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')
target "appBlendDemo" do
install_all_flutter_pods(flutter_application_path)
end
target "appBlendDemoTests" do
這個是要下載的第三方庫
pod 'MJRefresh'
pod 'Masonry'
pod 'AFNetworking'
end
終端pod install
9、下載完成后打開xcode項目xcworkspace
10疮薇、繼承完成