Shan International
Shan International

Reputation: 1

when use the Flutter mobile Simulator the input for the text field become white which makes it impossible to see the words

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

Answers (1)

reza
reza

Reputation: 1508

add this line to your TextField widget and change your text color to black.

style: TextStyle(color: Colors.black),

Upvotes: 0

Related Questions