DolDurma
DolDurma

Reputation: 17370

Circular Reveal Effect like WhatsApp in Flutter

in this blog we can make simple reveal effect for some layout in android java familiar. my question about is any library on implementation like with this animation?

enter image description here

for example:

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

Upvotes: 1

Views: 657

Answers (1)

DolDurma
DolDurma

Reputation: 17370

My problem solved by using this library

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

Upvotes: 1

Related Questions