Keyboard Pushes TextFields off screen

前端 未结 1 1117
故里飘歌
故里飘歌 2021-01-19 03:35

I\'ve been dealing with a strange situation in Flutter that I just can\'t figure out.

The problem is that when I attempt to use any kind of TextField in any kind of

相关标签:
1条回答
  • 2021-01-19 03:54

    The Scaffold has a properly to deal with this:

    Scaffold(
      resizeToAvoidBottomPadding: false,
    

    There are rare cases where it doesn't work but that should take care of it.

    0 讨论(0)
提交回复
热议问题