【发布时间】:2021-01-23 07:08:16
【问题描述】:
Widget build(BuildContext context) {
return Column(
children: [
InkWell(
child: CircleAvatar(
radius: 40,
backgroundColor: Colors.grey[600],
child: CircleAvatar(
radius: 37,
backgroundColor: Colors.white,
child: Stack(
children: [
Positioned(
top: 4,
left: 4,
bottom: 4,
right: 4,
child: IconButton(
icon: Icon(
icon,
size: 40,
color: Colors.grey[600],
),
onPressed: onpress,
),
),
],
),
),
),
),
点击此按钮时,我没有得到任何飞溅效果或任何其他效果。我也为不同的小部件添加了墨水池,但它仍然无法正常工作
【问题讨论】:
标签: flutter dart widget dart-pub