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.
我正在flutter应用程序中构建一个排行榜屏幕,每当用户来到排行榜屏幕时,我想将他旧位置的动画显示到排行榜中的新位置,所以我需要这一行的动画向上或根据他的排名,请有人帮我使用哪个小部件来使此功能正常工作。谢谢
AnimatedList是您正在寻找的小部件。添加/删除项目时,它会自动生成进入和退出动画。将其与 相结合,SizeTransition您将获得一个不错的“增长/收缩”效果。
AnimatedList
SizeTransition
官方文档中也有一些非常好的示例(甚至是视频教程)。
您还可以查看此答案以获取使用其中 2 个的更复杂示例。