摘要:
RuntimeError - [Xcodeproj] Unknown object version. 阅读全文
摘要:
swift 添加观察者, KVO, addObserver, Key-Path表达式,observe, 属性观察器 阅读全文
摘要:
pod sepc create, trunk, lib 阅读全文
摘要:
iOS 集成 Flutter 阅读全文
摘要:
Text组件出现黄色下划线 不使用Material相关的组件包裹Text组件,会出现Text自动带黄色下划线的情况, 解决方案 1: 使用 Material组件包裹 Material(child:Text('')); 2:使用Scaffold组件包裹 Scaffold(body:Text('')); 阅读全文
摘要:
# Q: 出现Waiting for another flutter command to release the startup lock.. 卡死的情况,并且重新启动开发工具不起作用 # A: 前往flutter SDK中 移除 bin/cache/lockfile 文件 ``` ~/flutt 阅读全文
摘要:
# Q: TextField 更改默认的高度,使用 InputDecoration 中的 contentPadding 更改默认高度无效。 # A: 同事需要制定 InputDecoration 中的 isDense 为 True。 ``` 是否使用更小的高度,默认为false Whether th 阅读全文