gpt4 book ai didi

flutter - 如何为 Flutter SliverList 中的元素设置动画?

转载 作者:行者123 更新时间:2023-12-05 07:17:33 27 4
gpt4 key购买 nike

我有一个 SliverList,我将它与 SliverAppBar 一起使用,以便在用户滚动列表时为应用栏设置动画(真的是 slivers 的标准用例,没什么特别的)。

现在我想为 SliverList 中的元素添加动画。例如,添加项目时的水平滑动过渡,或者重新排序列表时元素之间的一种垂直“随机播放”。 AnimatedList 提供了其中一些功能,但 SliverList 不提供。

我对框架的理解是,可能可以将提供给 SliverList 的元素包装在 AnimatedWidget(或一些类似的小部件)中以动画更改.但是我对 Flutter 动画的了解还是有点太新了,所以我寻求帮助。

这是我的部分代码。我想为下面的 GameScoreWidget 实例设置动画。

SliverList(
delegate: SliverChildBuilderDelegate((BuildContext context, int index) {
if (index == 0) {
return ListReorderWidget(viewModel: viewModel);
}
else if (!viewModel.isLatestGame(index-1)) {
return GameScoreWidget(position: index-1, viewModel: viewModel);
}
else
return Dismissible(
direction: DismissDirection.endToStart,
child: GameScoreWidget(position: index-1, viewModel: viewModel),
key: UniqueKey(),
background: Container(color: Colors.red),
onDismissed: (direction) {
onGameDismissed(context);
},
);
},
childCount: viewModel.games.length+1,
),
)

我找不到任何与我的问题相关的答案。我发现这个问题与 Animating changes in a SliverList 相关

但是没有答案...

最佳答案

使用

https://pub.dev/packages/auto_animated

这个包给你 LiveSliverList() 可以用来轻松地为 sliverList 设置动画

关于flutter - 如何为 Flutter SliverList 中的元素设置动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58757810/

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