Home

Published

- 1 min read

flutter clear all text in textfield

img of flutter clear all text in textfield

The solution for this is noted below

flutter clear all text in textfield

Solution

   TextField(
  controller: _controller,
  decoration: InputDecoration(
    hintText: "Enter a message",
    suffixIcon: IconButton(
      onPressed: () => _controller.clear(),
      icon: Icon(Icons.clear),
    ),
  ),
)

Try other methods by searching on the site. That is if this doesn’t work