Use a SingleChildScrollView around your widget, keep resizeToAvoidBottomInset: true
SingleChildScrollView(
// Make sure the SingleChildScrollView has a padding at the bottom equal to the keyboard height
padding: EdgeInsets.only(bottom: MediaQuery.of(context).viewInsets.bottom)
child: ...