5 4 月 2026, 周日

Flutter 弹出键盘屏幕溢出问题

在使用输入框获取焦点,弹出键盘的时候,会导致屏幕溢出,

    return Scaffold(
      appBar: AppBar(
        title: Text('测试'),
        centerTitle: true,
      ),
      resizeToAvoidBottomInset: false, //输入框抵住键盘 内容不随键盘滚动
)

 

Avatar photo

sion932