André Sousa
André Sousa

Reputation: 217

Flutter how to change font color of DropDownButton

Im trying to change the font color of my DropdownButton in flutter right now its black and i want to change it to white is there any way to do this?

DropDownButton

Thank you for you time.

Upvotes: 0

Views: 367

Answers (1)

Slah Layouni
Slah Layouni

Reputation: 740

You could use the style argument. heres the docs

style: TextStyle(color: Colors.deepPurple)

Upvotes: 1

Related Questions