Answers for "setting text to textformfield flutter"

7

flutter text field form

TextField(
  decoration: InputDecoration(
    border: InputBorder.none,
    hintText: 'Enter a search term'
  ),
);
Posted by: Guest on April-14-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 "setting text to textformfield flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language