1、Error connecting to the service protocol: HttpException: , uri = http://127.0.0.1:1024/ws
這種情況,一般是調試iOS真機的情況會出現(xiàn),打開Xcode->Window->Devices and Simulators妓盲,將Connect via network取消
2、pub get failed (69) 或者pub get failed (6*)
一般這種情況都是因為網(wǎng)絡問題,一般將 package 獲取地址改為訪問沒有問題的鏡像站就可以了垫言。
具體操作
Linux 或 Mac
export PUB_HOSTED_URL=https://pub.flutter-io.cn
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
Windows
新增兩個環(huán)境變量即可
PUB_HOSTED_URL = https://pub.flutter-io.cn
FLUTTER_STORAGE_BASE_URL = https://storage.flutter-io.cn
如果添加以后,還是不正常倾剿,使用cmd筷频,查看對應的環(huán)境變量
set PUB_HOSTED_URL
或者 set FLUTTER_STORAGE_BASE_URL
可以查看是否設置正確
確定不存在多余的空格蚌成,不然也是有問題的。
3凛捏、The following assertion was thrown during performResize():
這種情況是担忧,Column嵌套ListView的時候,高度不固定坯癣,例如:
Column(
children: <Widget>[
Text("測試1"),
Text("測試2"),
ListView(),
]
)
這樣使用的時候瓶盛,就會報上面的錯誤,這是因為不能確定ListView的高度示罗,這個時候惩猫,只需要添加一個Expand包裝ListView即可。
Column(
children: <Widget>[
Text("測試1"),
Text("測試2"),
Expand(child:ListView())
]
)