我用AnimationController
制作了一个动画,并且我希望它在用户打开应用程序时开始播放,并且当动画结束时,用户无需按任何按钮即可转到另一页。
在StatefulWidget
子类中使用此代码。
AnimationController _controller; // member variable
@override
void initState() {
super.initState();
_controller = AnimationController(vsync: this, duration: Duration(seconds: 1));
// start the animation when this page opens
_controller.forward().then((value) {
// animation is finished, you can now go to any page
Navigator.pushNamed(context, "/secondPage");
});
_controller.addListener(() {
// this is your listener, you can also control lots of things from here
});
}