标签:none isp ext 冲突 splay spl 键盘 输入框 style
以前搞ionic1~4的开发中 和react-native flutter中的机制完全不同, 在flutter 中 当前页面如果存在元素被软键盘挡住 的情况 页面元素的最外层肯定得嵌套一层 SingleChildScrollView
body: Container( //SingleChildScrollView 的父级元素得有高度 最外层Container默认 填充全部 child: SingleChildScrollView( ........ ) )
SingleChildScrollView 元素内部不能和 Expanded 的flex 直接填充 会冲突 。。
flutter TextField 输入框被软键盘挡住的解决方案
标签:none isp ext 冲突 splay spl 键盘 输入框 style
原文地址:https://www.cnblogs.com/tianmiaogongzuoshi/p/11181782.html