Reputation: 1
when using the Flutter mobile Simulator, the input for the text field becomes white which makes it impossible to see the words. enter image description here
Upvotes: 0
Views: 212
Reputation: 1508
add this line to your TextField
widget and change your text color to black.
style: TextStyle(color: Colors.black),
Upvotes: 0