类似于 Flutter 中 WhatsApp 的 Circular Reveal 效果

Circular Reveal Effect like WhatsApp in Flutter

this blog中我们可以为androidjava中的一些布局制作简单的显示效果。我的问题是有没有像这个动画一样的实现库?

例如:

android.view.ViewAnimationUtils
   Animator anim = android.view.ViewAnimationUtils
      .createCircularReveal(mRevealView, cx, cy, 0, radius);

我的问题用这个library

解决了
CircularRevealAnimation(
    child: Image.asset('assets/ocv.jpg'),
    animation: animation,
    center: Offset(130, 100),
),