gpt4 book ai didi

flutter - 如何更改Flutter InkWell的highlightShape属性?

转载 作者:行者123 更新时间:2023-12-03 04:16:01 26 4
gpt4 key购买 nike

我有以下Flutter小部件:

return SizedBox(
height: 40.0,
width: 40.0,
child: InkWell(
splashColor: Colors.grey,
onTap: callback,
child: Center(child: image),
),
);

问题在于此按钮上的突出显示为矩形。我想将其更改为圆形,但是 highlightShape属性不可修改。如何为该按钮提供圆形高光?

最佳答案

在@pskink的评论之后,我使用了customBorder:

return SizedBox(
height: 40.0,
width: 40.0,
child: InkWell(
splashColor: Colors.grey,
onTap: callback,
child: Center(child: image),
customBorder: CircleBorder(),
),
);

关于flutter - 如何更改Flutter InkWell的highlightShape属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57901477/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com