Flutter Keyboard overflow with My Dialog. You can simply use SingleChildScrollView:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | AlertDialog( content: SingleChildScrollView( scrollDirection: Axis.vertical, child: Column( children: <Widget>[ Text( "How Would You Rate Our App?", style: TextStyle(fontSize: 16.0, fontWeight: FontWeight.bold), textAlign: TextAlign.center, ), ] ) ) ) |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.