Published
- 1 min read
flutter keyboard hides textfield
The solution for this is noted below
flutter keyboard hides textfield
Solution
Padding(
child: YourWidget()
padding: EdgeInsets.only(
bottom: MediaQuery.of(context).viewInsets.bottom));
Try other methods by searching on the site. That is if this doesn’t work