I have made a dropdown menu, but when selecting items, the keyboard prevents the items from being displayed What is the solution to this problem?
2
You might try this solution: https://stackoverflow.com/a/73047628/12172300
// Just Add reverse: true on SingleChildScrollView. child: Center( child: SingleChildScrollView( reverse: true, child: Column(
use resizeToAvoidBottomInset: true
resizeToAvoidBottomInset: true
Scaffold( resizeToAvoidBottomInset: true, body: // your widgets here );
Click here to cancel reply.
2
Answers
You might try this solution: https://stackoverflow.com/a/73047628/12172300
use
resizeToAvoidBottomInset: true