当我按下密码TextFormFIEld时,我得到以下内容:
如您所见,覆盖了密码TextFormFIEld.我按照建议here试图解决这个问题:
class _LoginDrawer extends State<LoginDrawer> { static var _ListVIEwScrollController = new ScrollController(); @overrIDe Widget build(BuildContext context) => new Drawer( child: new ListVIEw( controller: _ListVIEwScrollController,children: <Widget>[ // ... new padding( padding: const EdgeInsets.symmetric(horizontal: 16.0),child: new GestureDetector( onTap: () { SchedulerBinding.instance.addPostFrameCallback((_) { _ListVIEwScrollController.jumpTo( _ListVIEwScrollController.position.maxScrollExtent); }); },child: new TextFormFIEld( obscureText: true,decoration: new inputdecoration(labelText: "Password")),),],);}
但这并没有解决它,该应用程序只是像以前一样.还有一些人建议使用反转的ListVIEw然后使用ListVIEwController.jumpTo(0.0),但这导致了不必要的效果,所有小部件从底部开始:
解决方法 根据@aziza发布的问题,它涉及到这个github问题:https://github.com/flutter/flutter/issues/7032
解决方案是使用一个小部件,将元素移出键盘.这是一个颤抖的错误.
总结以上是内存溢出为你收集整理的flutter – 在ListView中滚动键盘上方的TextFormField全部内容,希望文章能够帮你解决flutter – 在ListView中滚动键盘上方的TextFormField所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)