I want to change the background color and border radius of DropDownButton
,
i have tried it with theme
but it changes the color of dropdown list not the button.
Theme(
data: Theme.of(context).copyWith(canvasColor: Colors.blue),
child: DropdownButton(
items: [DropdownMenuItem(child: Text('one'))],
onChanged: (newvlaue) {}),
)