Answers for "dropdown flutter transparent"

0

dropdown flutter transparent

You can accomplish this by wrapping the DropdownButton in a Theme widget and 
overriding the canvasColor.

new Theme(
 data: Theme.of(context).copyWith(
 	canvasColor: Colors.blue.shade200,
 ),
Posted by: Guest on February-10-2022

Code answers related to "dropdown flutter transparent"

Browse Popular Code Answers by Language