I have a Flutter TextField which gets covered by the soft keyboard when the field is selected. I need to scroll the field up and out of the way when the keyboard is displaye
Simply use onTap function of TextField.
onTap
TextField
TextField( onTap: () { // Your code. }, );