I'm using Provider in my project, I have big list of custom object (comments), If I have about 1,000 comments in the list, when I update an item in the list, let's say I like some of comments and changing the isLike
bool from false to true, it rebuilds all the list, because I'm using Selector
in the list, and the notifyListeners
rebuilds all the 1,000 items instead this little like change.
I googled it and didn't find any example / doc that's talking about it, all the examples just show how to rebuild all the list widget instead of the specific widget item.