Answers for "textfield with icon flutter"

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
1

flutter textfield with icon onclick

TextField(
  controller: _controller,
  decoration: InputDecoration(
    hintText: "Enter a message",
    suffixIcon: IconButton(
      onPressed: () => _controller.clear(),
      icon: Icon(Icons.clear),
    ),
  ),
)
Posted by: Guest on July-01-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 "textfield with icon flutter"

Browse Popular Code Answers by Language