I have a disabled TextField in Flutter, I want to color the text as if it was enabled.
TextField(
controller: _controller,
enabled: false,
style: const TextStyle(fontSize: 20),
)
Desired
Actual
Any idea?
I have a disabled TextField in Flutter, I want to color the text as if it was enabled.
TextField(
controller: _controller,
enabled: false,
style: const TextStyle(fontSize: 20),
)
Desired
Actual
Any idea?