Material UI の Shadow を完全にオフる方法(React)
3093 ワード
はじめに
Button をオーバーライドして
shadow = 'none'
にしておけば、オフにできるかなと思ったけど
押下した時に現れる影は消せていないことが判明したので、ちょこっと付け加えることにした
押下前
押下時
解決
これだけ
none の付け方に注目
import {createMuiTheme, makeStyles} from '@material-ui/core/styles';
import {MuiThemeProvider} from "@material-ui/core";
const theme = createMuiTheme({
shadows: ["none"]
});
const Index = () => {
return(
<MuiThemeProvider theme={theme}>
<Button variant={valiant} className={classes.button}>
ボタンだよん
</Button>
</MuiThemeProvider>
)
}
最後に
「この画面では、俺はリプルエフェクトだけが欲しいんだ!!!影はいらん!!」
という方は試してみてくださいな
Author And Source
この問題について(Material UI の Shadow を完全にオフる方法(React)), 我々は、より多くの情報をここで見つけました https://qiita.com/from_host/items/ad440aee50d1031b682f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .