Answers for "textfield ui design flutter"

1

flutter textfield style

TextField(
  decoration: InputDecoration(
    border: OutlineInputBorder(),
    hintText: 'Enter a search term'
  ),
);
Posted by: Guest on July-10-2021
-1

textfield flutter example

TextFormField(
  decoration: const InputDecoration(
    border: UnderlineInputBorder(),
    labelText: 'Enter your username'
  ),
);
Posted by: Guest on September-16-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language