I want to get input from these TextField. When I focus the TextField the keyboard comes up and page scroll up. I do not need that scrolling. How can I avoid this?
3 Answers
To get better idea follow this reference link : https://api.flutter.dev/flutter/material/Scaffold/resizeToAvoidBottomInset.html
return Scaffold(
resizeToAvoidBottomInset : false,
body: Container(),
)
2 Comments
CopsOnRoad
Strange, I answered first, still you got 2 upvotes + acceptance, bad luck Haha.
Amit Prajapati
let's try next one for better luck bro.

