Dismissing a Dismissible with Flutter/Dart

后端 未结 5 1208
轻奢々
轻奢々 2021-01-03 17:53

In the majority of the Dismissible examples provided by Flutter, they are dismissing items within a ListView. For example, this.

What I am currently doing is this:

5条回答
  •  太阳男子
    2021-01-03 18:37

    Make sure the values you're passing to the key parameters are unique as well. And DO NOT use the index of an item. Since after removing an item from an array, the array will shift the positions of the items, the Dismissable widget will not recognize the removal of an item.

提交回复
热议问题