Answers for "how to set text in textfield in flutter"

5

flutter text field

TextField(
  decoration: InputDecoration(
    border: InputBorder.none,
    hintText: 'Enter a search term'
  ),
);
Posted by: Guest on April-14-2020
3

textfield set value flutter

/// You can use a [TextFormField] instead of [TextField]
/// and use the [initialValue] property. for example:

TextFormField(initialValue: "I am smart")
Posted by: Guest on September-23-2020
0

change text in text feild flutter

TextField(
      controller: txt,
    ),
    RaisedButton(onPressed: () {
        txt.text = "My Stringt";
    }),
Posted by: Guest on April-20-2021

Code answers related to "how to set text in textfield in flutter"

Browse Popular Code Answers by Language