在 material-ui 中更改标签的颜色
Change color of label in material-ui
我正在尝试更改子标题组件的颜色。只有我这样写才会改变
<subheader style={color.disabled} >Middle Name : </subheader>
哪里
const color = {
disabled: {
color: grey500,
},
};
我正在尝试在更改状态时更改副标题颜色。我该怎么做?
除非我误解了这个问题,否则除了状态的标准用法之外似乎没有任何其他内容:
changeSubheader() {
this.setState(
subheaderDisabledColor: {
disabled: {
color: red500,
},
};
);
};
<subheader style={this.state.subheaderDisabledColor}>Middle Name : </subheader>
https://facebook.github.io/react/docs/state-and-lifecycle.html#using-state-correctly
我正在尝试更改子标题组件的颜色。只有我这样写才会改变
<subheader style={color.disabled} >Middle Name : </subheader>
哪里
const color = {
disabled: {
color: grey500,
},
};
我正在尝试在更改状态时更改副标题颜色。我该怎么做?
除非我误解了这个问题,否则除了状态的标准用法之外似乎没有任何其他内容:
changeSubheader() {
this.setState(
subheaderDisabledColor: {
disabled: {
color: red500,
},
};
);
};
<subheader style={this.state.subheaderDisabledColor}>Middle Name : </subheader>
https://facebook.github.io/react/docs/state-and-lifecycle.html#using-state-correctly