Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要像下面的 gif 这样的动画小部件
但发生的事情就像下面的 gif
我只是为容器添加了一种颜色,以了解父容器的框架
当移出父小部件时,我们如何使内部小部件剪辑?
我正在使用 Transform 来制作类似项目的动画。
如果需要更多信息,请告诉我。
如果你想让你的红色容器剪辑溢出,你必须把它包装成一个ClipRect.
ClipRect
new ClipRect( child: new Container(color: Colors.red, child: myAnimationThing), ),