Answers for "customize textfield in flutter"

0

flutter textfield style

TextField(
  decoration: InputDecoration(
    border: OutlineInputBorder(),
    hintText: 'Enter a search term'
  ),
);
Posted by: Guest on July-10-2021
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 "Dart"

Browse Popular Code Answers by Language