Answers for "flutter textfield 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
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 textfield leading icon"

Browse Popular Code Answers by Language