【发布时间】:2020-04-26 16:54:29
【问题描述】:
我正在尝试将徽标向右滑动,然后再次从左侧滑动 enter image description here 我试过了,但它会弹回徽标
void initState() {
super.initState();
_controller = AnimationController(
// duration: const Duration(seconds: 90),
vsync: this,
)..repeat(reverse: false);
_offsetAnimation = Tween<Offset>(
begin: Offset.zero,
end: const Offset(7.1, 7.0),
).animate(CurvedAnimation(
parent: _controller,
curve: Curves.easeOutQuint,
));
}
【问题讨论】: