是否可以在material-ui中更改SelectField
的弹出窗口背景颜色?
我检查了生成的主题,但没有selectField
或popover
键。试图更改menu
的{{1}}和backgroundColor
,但它对containerBackgroundColor
答案 0 :(得分:1)
是的,这是可能的。在幕后SelectField
使用DropDownMenu
组件,你可以看到here有一个属性 menuStyle - 这就是你要用来改变popover风格的东西。
例如:
<SelectField menuStyle={{background: '#ddd'}} ...otherProps >