Ask Your Question
3

Why doesn't the Flutter TextEditingController clear the text in a TextFormField that is set to readOnly?

asked 2021-12-03 11:00:00 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-02-22 11:00:00 +0000

pufferfish gravatar image

The Flutter TextEditingController does not clear the text in a TextFormField that is set to readOnly because readOnly means that the text field is not editable by the user, but it can still be modified programmatically.

In other words, setting a TextFormField to readOnly does not prevent the TextEditingController from modifying its text. Therefore, clearing the TextEditingController's text in a readOnly field would contradict this behavior.

If you want to clear the text in a readOnly field, you can use the TextEditingController to set its text to an empty string. However, you should also change the field's readOnly property to false before clearing the text, and revert it back to true afterward. This ensures consistency between the field's readOnly property and its current state.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-12-03 11:00:00 +0000

Seen: 11 times

Last updated: Feb 22 '23