Answers for "how to style text field flutter"

0

flutter textfield style

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

Browse Popular Code Answers by Language