我在谈论这个存储库. https://github.com/callemall/material-ui 我想知道如何禁用所有组件的涟漪效应. 谢谢. 您可以通过将此属性添加到MUIThemeProvider内部最高级别的React组件的componentDidMount()来禁
https://github.com/callemall/material-ui
我想知道如何禁用所有组件的涟漪效应.
谢谢.
您可以通过将此属性添加到MUIThemeProvider内部最高级别的React组件的componentDidMount()来禁用默认属性:componentDidMount(){ //Do this to all components you would like to disable the ripple effect. EnhancedButton.defaultProps.disableTouchRipple = true; EnhancedButton.defaultProps.disableFocusRipple = true; }