piu_animation 0.0.1 copy "piu_animation: ^0.0.1" to clipboard
piu_animation: ^0.0.1 copied to clipboard

outdated

PiuAnimation piu~~~的一下,可用作加入购物车、保存截屏等动画特效

类似加入购物车动画【PiuAnimation】 #

PiuAnimation,piu~~~的一下,可用作加入购物车、保存截屏等动画特效

Look #

MacDown Screenshot

###添加方法

PiuAnimation.addAnimation(
        	rootKey,   //主Widget GlobalKey
			piuWidget, //Child
			endOffset, //终点坐标
        	maxWidth: MediaQuery.of(context).size.width, //Child最大宽度
        	doSomethingBeginCallBack: () { //动画开始回调
      			print("动画开始");
   			 }, 	
    		doSomethingFinishCallBack: () { //动画结束回调
      			print("动画结束");
    		});
//其中还有动画时长、悬停最小宽度等属性设置

###使用方式详见main.dart

//通过GlobalKey获取终点坐标,及大小等
//demo终点坐标为按钮的中心点
RenderBox box = key.currentContext!.findRenderObject() as RenderBox;
    var offset = box.localToGlobal(Offset.zero);
    Offset endOffset =
        Offset(offset.dx + box.size.width / 2, offset.dy + box.size.height / 2);

####下一版预计会加入悬停Loading逻辑

GitHub地址: GitHub

8
likes
0
points
27
downloads

Publisher

unverified uploader

Weekly Downloads

PiuAnimation piu~~~的一下,可用作加入购物车、保存截屏等动画特效

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_web_plugins

More

Packages that depend on piu_animation