RotationY Matrix4没有完全旋转

时间:2019-02-22 12:17:04

标签: flutter

我有一个文本小部件,只想在Y轴上旋转360度。

这是我当前拥有的代码,它只会旋转到某个点。

4.0.0

enter image description here

你们知道如何解决此问题吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

添加这个

_rotate = Tween(begin: 0.0, end: 3.14 * 2).animate(_controller)
..addListener(() {
        setState(() {});
      });