Bottom overflow by 30px

前端 未结 7 494
情深已故
情深已故 2020-12-09 08:00

I face a problem by wrapping TextField with new Expanded(). When try to search something in textfield its show me bottom overflow by <

相关标签:
7条回答
  • 2020-12-09 09:05

    You should use resizeToAvoidBottomInset

    Scaffold(
      resizeToAvoidBottomInset: false, // set it to false
      ... 
    )
    

    If you're having issues with overflow error, use SingleChildScrollView with it.

    Scaffold(
      resizeToAvoidBottomInset: false, // set it to false
      body: SingleChildScrollView(child: YourBody()),
    )
    
    0 讨论(0)
提交回复
热议问题