在滑动页面内滚动
我在 flutter 中有一个滑动页面,其中有一些文本表单字段作为列子项。现在,当我关注最后一个文本字段时。文本字段被键盘覆盖。我想让该列可滚动,因此我将该列作为 singlechildscrollview 的子项。但由于该页面已经是滑动页面的一部分,因此可以滚动。滚动不适用于该列。我该如何实施呢?
I have a swiper page in flutter where I have some textformfields as column children. Now when I focus on the last textfield. The textfield gets covered by keyboard. I would like to make the column scrollable so I put the column as child of singlechildscrollview. But since the page is already part of a swiper page and hence scrollable. The scroll is not working for the column. How do I go about implementing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为 SingleChildScrollView 添加物理:ClampingScrollPhysics() 属性。也许这会解决你的问题。
Add
physics: ClampingScrollPhysics()
property for SingleChildScrollView. May be this will solve your problem.