Я пытаюсь установить значение TextFormField
в flutter
.
Но я не смог найти способ сделать это.
вот как мои widget
выглядит так:
Widget _showHeadlineField() {
return TextFormField(
textInputAction: TextInputAction.next,
onEditingComplete: () {
FocusScope.of(context).requestFocus(_descriptionNode);
},
controller: _headlineController,
validator: (headline) {
if (headline == null || headline.isEmpty) {
return "Headline cannot be empty";
}
},
decoration: InputDecoration(
labelText: "Headline",
hintText: "Covid-19 new stats",
border: OutlineInputBorder(),
icon: Icon(Icons.add_box),
),
);
}
Я даже попробовал initialValue
, но не работает. Кто-нибудь может мне помочь?