Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/flutter/9.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Flutter 颤振中的WhatsApp等圆形显示效果_Flutter_Flutter Layout_Flutter Animation - Fatal编程技术网

Flutter 颤振中的WhatsApp等圆形显示效果

Flutter 颤振中的WhatsApp等圆形显示效果,flutter,flutter-layout,flutter-animation,Flutter,Flutter Layout,Flutter Animation,在android java中,我们可以对一些布局做出简单的显示效果。我的问题是,有没有类似于此动画的实现库 例如: android.view.ViewAnimationUtils Animator anim = android.view.ViewAnimationUtils .createCircularReveal(mRevealView, cx, cy, 0, radius); 用这个解决了我的问题 CircularRevealAnimation( child:

在android java中,我们可以对一些布局做出简单的显示效果。我的问题是,有没有类似于此动画的实现库

例如:

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

用这个解决了我的问题

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