infinite_scroll_pagination icon indicating copy to clipboard operation
infinite_scroll_pagination copied to clipboard

I delete an element from the feed stream

Open ke112 opened this issue 1 year ago • 0 comments

I want to delete a certain element from the infinite feed stream and refresh the display normally. Now the situation is that the last one disappears after deletion, scroll for a while, and the display is normal again. How to solve it , Here's how

bool removeItem(T item) { bool result = dataList.remove(item); if (result == false) return false; pagingController.itemList = dataList; notifyData(); return true; }

ke112 avatar Aug 15 '24 08:08 ke112