当我在容器内按下IconButton时,会在容器外部绘制启动效果,因此它会“溢出”。如何设置边界以限制绘制飞溅效果的区域?
我的层次结构看起来像这样,我想限制容器小部件中的启动效果。
- Expanded
-- Listview
- Container
-- Row
--- IconButton[]
答案 0 :(得分:1)
我认为最好使用带有Icon的InkWell小部件作为子级。如Flutter的文档所述
您可以使用onTap()属性来放置函数,还可以使用borderRadius
属性来将飞溅设置为圆形。
圆形飞溅InkWell
Container(
height: 30,
width: 30,
child: InkWell(
borderRadius: BorderRadius.circular(30),
onTap: () {},
child: Icon(Icons.timer),
),
),
或者您可以使用没有borderRadius的默认形状,这也很酷:}
Container(
height: 30,
width: 30,
child: InkWell(
onTap: () {},
child: Icon(Icons.timer),
),
),
答案 1 :(得分:0)