skip to Main Content

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?

enter image description here

2

Answers


  1. 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(
    
    Login or Signup to reply.
  2. use resizeToAvoidBottomInset: true

    Scaffold(
      resizeToAvoidBottomInset: true,
      body: // your widgets here
    );
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search