Answers for "flutter add icon to hint in textfield"

0

text form field prefix icon

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

Code answers related to "flutter add icon to hint in textfield"

Browse Popular Code Answers by Language