dropdown_button2
dropdown_button2 copied to clipboard
[Question] DropdownMenuItem -on mouse over, change my child widget style
Hi,
I have the following and simple DropdownMenuItem:
DropdownMenuItem<String>( value: "", child: StatefulBuilder(builder: (context, menuSetState) { return Text("child", style: Colors.black); }), )
And when the menu item is hovered (overlay active), I wish to change the text color. I didn't find any way to do this, right ?