Reputation: 217
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?
Thank you for you time.
Upvotes: 0
Views: 367
Reputation: 740
You could use the style argument. heres the docs
style: TextStyle(color: Colors.deepPurple)
Upvotes: 1