Flutterd起键盘页面布局超限问题以及布局上移问题

Flutterd起键盘页面布局超限问题以及布局上移问题,第1张

在 Scaffold中加上resizeToAvoidBottomInset: false,

return Scaffold(
///禁止布局随着键盘上移动
resizeToAvoidBottomInset: false,
appBar: AppBar(
title: Text(“键盘处理”),
),
body: Container(
margin: EdgeInsets.only(bottom: 200),
alignment: Alignment.bottomCenter,
child: TextField(
controller: widget.c,
),
),
);

///取消下划线
decoration: InputDecoration(
border: InputBorder.none,
),

欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/web/990388.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-05-21
下一篇2022-05-21

发表评论

登录后才能评论

评论列表(0条)

    保存