Flutter 学习(六)软键盘弹出顶掉内容、防止键盘超出屏幕
2019-05-28 本文已影响0人
nibote
Flutter 学习(六)软键盘弹出顶掉内容、防止键盘超出屏幕
return Scaffold(
appBar: AppBar(
title: new Text("通讯录"),
),
resizeToAvoidBottomPadding: false, //输入框抵住键盘 内容不随键盘滚动
);
Flutter 学习(六)软键盘弹出顶掉内容、防止键盘超出屏幕
return Scaffold(
appBar: AppBar(
title: new Text("通讯录"),
),
resizeToAvoidBottomPadding: false, //输入框抵住键盘 内容不随键盘滚动
);