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
The easiest and simplest solution is to add the onTap method on TextField.
TextField( onTap: () { print('Editing stated $widget'); }, )