我在ListView中使用Slidable,这样我就可以删除项目。问题是,如果我从列表中删除一个项目,则新项目将可滑动打开。这显然不是想要的行为。这是一个屏幕视频,以便更好地理解。
我的列表是动画列表:
` child: AnimatedList(
padding: EdgeInsets.zero,
shrinkWrap: true,
key: listKey,
initialItemCount: widget.month.memories.length,
itemBuilder: (context, index, animation) {
return slideIt(
context,
widget.month.memories[index],
index,
animation,
);
},
),`
这是我的可滑动:
` Widget slideIt(
BuildContext context,
Memory memory,
int index,
animation,
) {
return SlideTransition(
position: Tween<Offset>(
begin: const Offset(-1, 0),
end: Offset(0, 0),
).animate(
CurvedAnimation(
parent: animation,
curve: Curves.easeIn,
reverseCurve: Curves.easeOut,
),
),
child: Slidable(
actionPane: SlidableDrawerActionPane(),
actionExtentRatio: 0.25,
movementDuration: Duration(milliseconds: 400),
child: Column(
children: [
MemoryTile(
memory: memory,
monthName: widget.month.name,
onTapped: () {
_removeMemoryAtIndex(index, memory);
print('tap on ${memory.description}');
},
),
SizedBox(
height: scaleWidth(20),
),
],
),
secondaryActions: [
SlideAction(
closeOnTap: false,
color: AppColors.secondary,
onTap: () => {
_removeMemoryAtIndex(index, memory),
},
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
CupertinoIcons.trash_fill,
color: AppColors.primary,
size: 30,
),
SizedBox(
height: scaleWidth(5),
),
Text(
'Löschen',
style: AppTextStyles.montserratH6SemiBold,
),
SizedBox(
height: scaleWidth(20),
),
],
),
),
],
),
);
}`
动画列表让它变得有点棘手,所以如果你需要更多信息,请告诉我!我该怎么解决这个问题?
您应该为您的幻灯片分配一个键。当Flutter管理其状态时,它使用三棵树来完成:小部件树、元素树和渲染对象树。当一个小部件关闭时,flutter试图通过简单的类型相等来将其余的小部件与相应的元素同步。所以,这就是为什么你的应用程序会这样做。Flutter获取剩余的第一个小部件加上第一个元素,并比较它们是否具有相同的类型。如果有,Flutter将使用元素的状态来显示相应的渲染对象。元素树的最后一个元素将被删除。因此,您需要添加键,Flutter将额外使用它们以理想的方式同步小部件和元素。
每个Flutter小部件都有一个Key
字段。您应该在创建小部件实例时分配它们。你可以使用一些实用程序类来生成这样的键,比如ValueKey((、UniqueKey等。或者,如果你的数据中有自己的键,你也可以使用它。