我怎么知道AnimationController的动画方向?

问题描述 投票:0回答:2

我想知道控制器是要对动画进行动画处理还是已经对动画进行动画处理。像controller.direction这样的东西会很不错。

flutter flutter-animation
2个回答
1
投票

您可以使用controller.isAnimatingcontroller.status检查控制器当前是否在制作动画以及朝哪个方向移动。


0
投票

controller.status == AnimationStatus.forward || controller.status == AnimationStatus.dismissed

但是我想知道是否还有更好的东西

© www.soinside.com 2019 - 2024. All rights reserved.