gpt4 book ai didi

animation - 对容器窗口小部件进行动画处理,使屏幕向左移动

转载 作者:行者123 更新时间:2023-12-03 04:55:21 25 4
gpt4 key购买 nike

我想知道如何为容器小部件制作动画以使屏幕离开左侧。

我怎么做?

谢谢!

最佳答案

这是您可以使用 SlideTransition 做到的方式

class SlideContainerToTheLeft extends StatefulWidget {
@override
_SlideContainerToTheLeftState createState() =>
_SlideContainerToTheLeftState();
}

class _SlideContainerToTheLeftState extends State<SlideContainerToTheLeft>
with SingleTickerProviderStateMixin {
var tween = Tween<Offset>(begin: Offset.zero, end: Offset(-2, 0))
.chain(CurveTween(curve: Curves.ease));
AnimationController animationController;

@override
void initState() {
// TODO: implement initState
super.initState();
animationController =
AnimationController(vsync: this, duration: Duration(seconds: 2));
}

@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: SlideTransition(
position: animationController.drive(tween),
child: Container(
width: 300,
height: 400,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20), color: Colors.blue),
),
),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
animationController.forward();
},
),
);
}
}

希望这对您有所帮助。

关于animation - 对容器窗口小部件进行动画处理,使屏幕向左移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60729627/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com