2
我正在討論這個存儲庫。 https://github.com/callemall/material-ui如何在Material Design React中禁用紋波
我想知道如何禁用所有組件的漣漪效應。
感謝。
我正在討論這個存儲庫。 https://github.com/callemall/material-ui如何在Material Design React中禁用紋波
我想知道如何禁用所有組件的漣漪效應。
感謝。
您可以通過在最高級別增加這componentDidMount()禁用默認屬性陣營組件是MUIThemeProvider
內:
componentDidMount(){
//Do this to all components you would like to disable the ripple effect.
EnhancedButton.defaultProps.disableTouchRipple = true;
EnhancedButton.defaultProps.disableFocusRipple = true;
}