Flutter键盘调出异常:bottom overflowed by 104 PIXELS

在做登录注册页面时,调出键盘出现 bottom overflowed by 104 PIXELS 错误,底部溢出了。需要使用 SingleChildScrollView 组件包装。

代码如下:

@override
Widget build(BuildContext context) {
   return Scaffold(
     //使用该组件作为body,包裹Column组件
     body: SingleChildScrollView(
       child: new Column(
         children: <Widget>[
       	 	. . . . . .
       	 ],
       ),
     ),
   );
}
发布了38 篇原创文章 · 获赞 18 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/weixin_43851639/article/details/100915005
104
今日推荐