Flutter TextFormField hidden by keyboard
NOTE: Im using Navigator.of(context).push to push ModalRoute, Hi I have page with ModalRoute with TextFormField in the body, but when keyboard show up, the input is being hide by keyboard, how to fix this? return Container( child: ListView( children: <Widget>[ //other widget SizedBox(height: _qtyAnimation.value), Row( children: <Widget>[ Expanded( child: Text( "Jumlah", style: TextStyle(fontWeight: FontWeight.bold), ), ), SizedBox( width: 145.0, child: TextFormField( focusNode: _qtyFocusNode, controller: qty, keyboardType: TextInputType.number, textAlign: TextAlign.center, decoration: