脉冲动画按钮 Flutter

Pulse animation button Flutter

我正在寻找在 flutter 中制作的脉冲动画按钮。

有人可以帮助我吗?

这与您的相似,avatar_glow:

AvatarGlow(
 endRadius: 60.0,
 child: Material(     // Replace this child with your own
   elevation: 8.0,
   shape: CircleBorder(),
   child: CircleAvatar(
     backgroundColor: Colors.grey[100],
     child: Image.asset(
       'assets/images/dart.png',
       height: 50,
     ),
     radius: 30.0,
   ),
 ),
),