flutter 错误记录
华山派developer
这个作者很懒,什么都没留下…
展开
-
命令行中flutter doctor正常,pubspec.yaml中flutter doctor则报cocoapods not install(编译报)
(ios 编译报错 CocoaPods not installed or not in valid state)原因是mac中安装了多个cococapod解决方法:gem list 可以查看电脑中的cococapod版本sudo gem uninstall cocoapods后选择要卸载的版本sudo gem install cocoapods如果卸载了所有的cocoapods,则执行附加步骤转到Flutter项目的iOS目录pod install重启软件就好了原创 2020-10-12 10:16:28 · 2820 阅读 · 0 评论 -
flutter 踩坑记录 flutter_swiper报错 ScrollController not attached to any scroll views.Failed assertion: li
报错如下:ScrollController not attached to any scroll views.‘package:flutter/src/widgets/scroll_controller.dart’:Failed assertion: line 112 pos 12: ‘_positions.isNotEmpty’报错位置:就是Swiper插件这,突然就报这样的错啦,导致点击操作也没办发解决方法:在相关位置加key:GlobalKey(),如下:...原创 2020-09-11 19:29:00 · 1506 阅读 · 1 评论 -
flutter打包报错This application cannot tree shake icons fonts. It has non-constant instances of IconData
解决方法 在Icon 前面加const修饰原创 2020-09-09 11:20:44 · 5790 阅读 · 4 评论 -
flutter 错误记录 键盘弹起收起导致数据初始化
键盘弹起收起会导致页面build,页面build会让widget.data的数据初始化解决:将数据与build的方法放在一起;原创 2020-09-02 17:59:43 · 1203 阅读 · 0 评论