Atiq Ur Rehman
Atiq Ur Rehman

Reputation: 1235

Flutter, How to seamlessly scroll the view when keyboard opened

enter image description here

This is the best example I found over Google, imagine if this form also have login button on bottom and as user taps in last TextField it should nicely translate the UI to upword. How can I achieve something like this.

Upvotes: 0

Views: 178

Answers (1)

CuteLizard420
CuteLizard420

Reputation: 72

I believe that there are two things that you can do. Despite there are no code snippets for me to look at:

1.) I think you might consider wrapping the body of your screen with the SingleChildScrollView() widget.

2.) Or maybe you can wrap the TextFields with the ListTile() widget.

I hope this helps😄😄

Upvotes: 1

Related Questions