Autolist
Animated list views, automatically.
Summary
| Latest Version | Unknown |
|---|---|
| License | Unknown |
| CI Status | Failing |
| Stars | 1 |
| Forks | 3 |
| Open Issues | 0 |
| Last Commit | 2021-03-01 |
| Downloads | 0 |
| Last Indexed | 2026-09-07 06:08 |
Installation
nimble install Autolist
choosenim install Autolist
git clone https://gitlab.com/benweitzman/autolist
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| Autolist | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Source
| Repository | https://gitlab.com/benweitzman/autolist |
|---|---|
| Homepage | https://gitlab.com/benweitzman/autolist |
| Registry Source | gitlab |
README
Autolist
Animated list views, automatically.
Autolist transforms regular dart lists them into a fully animated list views, automatically managing insertions and deletions.
Demo

To use:
See more in example/lib/main.dart
AutoList<int>(
items: _items,
duration: Duration(milliseconds: 400),
itemBuilder: (context, item) {
return Row(
children: <Widget>[
Expanded(
child: Container(
padding: EdgeInsets.all(20),
decoration: BoxDecoration(
border: Border(
top: BorderSide(),
),
),
child: Text(
item.toString(),
key: Key(item.toString()),
),
),
),
],
);
},
)