animated-stream-list
animated-stream-list copied to clipboard
A dart package to easily display a list with animated transitions
## Description All dependencies are migrated to null safety. So we should migrate this package to null safety. ## Resources * [How to migrate Dart packages to null safety](https://youtu.be/eBr5tlumwlg) *...
## Description I propose this pull request to [migrate this plugin to null safety](https://dart.dev/null-safety/migration-guide) as it is the way to go now that Flutter 2 has been released. Here are...
## Description The `example` of this package isn't migrated to Android embedding v2 yet. ``` ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Warning ────────────────────────────────────────────────────────────────────────────── Your Flutter application is created using an older version of the Android...
i use stream of data(list of contacts) from moor sqlite db and while i update the state when i search by name as example,the animated streamlist doesn't change it keeps...
…equalizer as member variable in _DiffArguments, which is passed as argument to isolate, and use args.eq instead of DiffUtils.eq (if user passed in equalizer function, else default to `(a, b)...
While trying to use the animated stream list package in my project, I am finding that `DiffUtil.eq` is always null inside the `_myersDiff` method, which is called in a separate...
Isolates
Thanks for this library - I've been looking for a dart implementation of the myers diff algorithm. I have a few thoughts... I'm planning to publish a fork of this...
I have the following issue: ``` [ERROR:flutter/lib/ui/ui_dart_state.cc(148)] Unhandled Exception: Invalid argument(s): Illegal argument in isolate message : (object is a closure - Function '':.) E/flutter (19379): #0 Isolate._spawnFunction (dart:isolate-patch/isolate_patch.dart:549:55) E/flutter...
https://github.com/adithyaxx/animated-stream-list/blob/master/lib/src/myers_diff.dart#L5 Can the `Equalizer` interface be typed too, something like ```typedef bool Equalizer(E item1, E item2);``` Thanks.