Answers for "typeahead textfield flutter leading icon"

1

add a leading icon to text field in flutter

TextField(
//    ...,other fields
      decoration: InputDecoration(
        prefixIcon: prefixIcon??Icon(Icons.done),
      ),
    ),
Posted by: Guest on June-10-2020

Code answers related to "typeahead textfield flutter leading icon"

Browse Popular Code Answers by Language