I have a Text Field in the bottom Navigation Bar. I am making a chat screen, so when the User taps on the text field the keyboard go up, but the text field stick down and don't go up with. I tried many solutions but nothing worked, I am really stuck. Flutter Version
Flutter 1.26.0-1.0.pre
return Scaffold(
resizeToAvoidBottomInset: false,
backgroundColor: Palette.primary,
appBar: MyAppBar(),
body: MyBody(),
bottomNavigationBar: TextField(
maxLength: 255,
decoration: InputDecoration(
hintText: " write here",
focusedBorder: InputBorder.none,
enabledBorder: InputBorder.none,
errorBorder: InputBorder.none,
disabledBorder: InputBorder.none,
border: null,
hintStyle: GoogleFonts.getFont('Tajawal',
color: Colors.white, fontWeight: FontWeight.w500),
counterText: "",
),
style: GoogleFonts.getFont('Tajawal',
fontSize: 17, fontWeight: FontWeight.w500),
),
),
);
}
}