ПРИМЕЧАНИЕ. Я использую Navigator.of (context) .Push, чтобы нажать ModalRoute,
Привет У меня есть страница с ModalRoute
с TextFormField
в теле, но когда клавиатурапоказать, ввод скрывается с клавиатуры, как это исправить?
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: InputDecoration(
contentPadding: EdgeInsets.all(0.0),
prefixIcon: IconButton(
icon: Icon(Icons.remove),
onPressed: () {},
),
border: OutlineInputBorder(
borderSide:
BorderSide(color: Colors.grey, width: 0.1),
),
suffixIcon: IconButton(
icon: Icon(Icons.add),
onPressed: () {},
),
),
),
),
],
),
],
);
вот мой код, я пытаюсь с focusnode и многое другое, все тот же результат, пожалуйста, помогите мне