quire-io / scroll-to-index

scroll to index with fixed/variable row height inside Flutter scrollable widget
MIT License
518 stars 105 forks source link

any idea for scroll to index without animation? #28

Closed zhengbomo closed 4 years ago

zhengbomo commented 4 years ago

i try

_scrollController.scrollToIndex(currentIndex + addCount,
     duration: Duration.zero,
     preferPosition: AutoScrollPosition.begin);

but i does not work

jerrywell commented 4 years ago

given Duration.zero will cause scrollController throw exception. you can try taking it at least Duration(microseconds: 1).