作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用FlatButton
并传递了属性
FlatButton(
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
child: ...,
)
documentation says that FlatButton will become obsolete,并改为使用
TextButton
,但它没有
splashColor
或
highlightColor
属性
TextButton(
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
child: ...,
)
不起作用。不允许
TextButton(
style: ButtonStyle(
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
),
child: ...,
)
我怎样才能做到这一点?谢谢
最佳答案
Colors.transparent会拒绝任何效果,只是它是透明的,所以它什么也不会发生...在ButtonStyle中,它与颜色类似。
ButtonStyle(
overlayColor: MaterialStateColor.resolveWith((states) => Colors.red),
),
关于Flutter TextButton splashColor属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64380867/
我正在尝试禁用 TextField 上的链式 react 。 splashColor: Colors.transparent 也消除了对其他小部件的涟漪效应。 我只想去除 TextField 上的链式
我是一名优秀的程序员,十分优秀!