LostTexan
LostTexan

Reputation: 891

Keyboard covering screen inputs on android

I have created a mobile app for android and iOS. I have an issue with the keyboard covering the input widgets.

enter image description here

I added the code below as suggested in another post. It didn't work as you can see from the image.

return Scaffold(
      resizeToAvoidBottomPadding: true,
      appBar: AppBar(

How can I get this to work?

Upvotes: 0

Views: 90

Answers (1)

Moaid ALRazhy
Moaid ALRazhy

Reputation: 1744

To solve it try to wrapping the body of your scaffold with singleChildScrollView and make sure it is column the child of the singleChildScrollView

Upvotes: 1

Related Questions