enter image description here
滑动产品后,我让它自动关闭。我想在它自动关闭的时候做一些操作,怎么做?我想在onPressed自动关闭时执行在onPressed中执行的操作。
Slidable(
closeOnScroll: true,
key: UniqueKey(),
endActionPane: ActionPane(
extentRatio: 0.1,
openThreshold: 0.2,
closeThreshold: 0.1,
motion: const BehindMotion(),
children: [
SlidableAction(
key: UniqueKey(),
onPressed: (context) {
item.selectedCount = 0;
item.isSelected = false;
widget.providerValue.selectedCheckItem
?.remove(item);
widget.providerValue.notifyListeners();
},
backgroundColor: context.suit200Red,
icon: Icons.delete,
label: 'İptal',
),
],
),
child: MaxListTile()
1条答案
按热度按时间xhv8bpkk1#
您可以尝试: