diffutil.dart
diffutil.dart copied to clipboard
Hi there, I'm also inspired by Android's [DiffUtil](https://developer.android.com/reference/kotlin/androidx/recyclerview/widget/DiffUtil) class. And I want to simply use the specific data during the modification like you mentioned in your [README.md](https://github.com/knaeckeKami/diffutil.dart#readme). So I want...
When performing diff between two lists where the compared list is empty results with different results depending on the batched parameter. To simplify the problem I've created a sample code...
I'm using you library with an animated list and I'm also aiming to animate the initial items rendering. I noticed that when using `getUpdatesWithData` and comparing an initial empty list...
Hi, I'm trying to understanding the `change` callback on the `DataDiffUpdate` class. Why does ```dart diffutil.calculateListDiff([1, 2, 3], [1, 0, 3]).getUpdatesWithData(); ``` return ```dart [ DataRemove(position: 1, data: 2), DataInsert(position:...