摘要: flutter开发弹起键盘出现Overflow问题的解决方法 方法1: //Scaffold节点下添加resizeToAvoidBottomPadding: false,这样页面就不会随着键盘弹起而滚动。 Scaffold( resizeToAvoidBottomPadding: false, bo 阅读全文
posted @ 2020-11-04 18:02 yongfengnice 阅读(2322) 评论(0) 推荐(0) 编辑
摘要: flutter判断app是否为debug或者release模式 debug模式: import 'package:flutter/foundation.dart'; static bool _debug = kDebugMode; //constant下的一个常量 release模式: import 阅读全文
posted @ 2020-11-04 14:34 yongfengnice 阅读(4883) 评论(1) 推荐(1) 编辑