我使用动画让我的小部件移动。
当我点击播放按钮时,我想要小部件
现在我刚完成1,不知道如何完成2和3
这是我在
State
中的代码。
@override
void initState() {
animationController = AnimationController(duration: widget.duration, vsync: this);
animation = Tween(
begin: const Offset(1.0, 0),
end: const Offset(0.0, 0)
).animate(animationController);
animationController.forward();
super.initState();
}
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: () {
},
child: SlideTransition(
position: animation,
child: getBarrageWidget(),//can be any widget, not important.
),
);
}
任何帮助将不胜感激。