DavideBelsole / great_list_view

pub.dev library for flutter
MIT License
41 stars 22 forks source link

How can I change the duration of the reordering animation? #15

Closed mregnauld closed 2 years ago

mregnauld commented 2 years ago

Is there a way to change the duration of the reordering animation?

Even though it looks very nice, it's quite slow to me, I tried with the AutomaticAnimatedListView to change its morphDuration, but nothing changed.

Thanks.

mregnauld commented 2 years ago

OK, so I found how to do it: use the animator attribute of AutomaticAnimatedListView:

AutomaticAnimatedListView<ItemData>(
  animator: DefaultAnimatedListAnimator(
    dismissIncomingDuration: const Duration(milliseconds: 150),
    resizeDuration: const Duration(milliseconds: 200),
  ),
  ...
)