scroll-to-index icon indicating copy to clipboard operation
scroll-to-index copied to clipboard

scroll to index with fixed/variable row height inside Flutter scrollable widget

Results 28 scroll-to-index issues
Sort by recently updated
recently updated
newest added

can not scroll to the target index in this example, this example use CustomScrollView with two sliverList ```dart import 'package:flutter/material.dart'; import 'package:scroll_to_index/scroll_to_index.dart'; void main() { runApp(const MyApp()); } class MyApp...

Hi, I try to create a bidirectional lazy load list like the like flutter docs said https://github.com/flutter/flutter/blob/5464c5bac742001448fe4fc0597be939379f88ea/packages/flutter/lib/src/widgets/scroll_view.dart#L502-L513 I create a [gist](https://gist.github.com/MiniSuperDev/daae1ebcca5195bbdafcedb0c0338ffb#file-main-dart) where you can enable a disable the center key,...

1. Firstly, the lastest version of this packages can not run below Flutter 3.0. 2. And, it can't jump to the listview item, which showed previoulsy then be inactive in...

If a child of AutoScrollTag rebuilds, then `controller.scrollToIndex` does **not** cause the list to scroll. See minimum working example: (uncomment below TODO to break scrolling behaviour) ```dart import 'package:flutter/material.dart'; import...

Hi! I did some small changes to support nested scroll view, i.e. scrollable parent with non-scrollable list view children. Also added a demo in the sample app. Please kindly help...

My concern is how do I get a currentIndex, while user is scrolling. I saw on `AutoScrollController` we don't get a index, will you please tell me how can I...

I think it would be great if users of your package will have the ability to set preferred duration of highlight via parameter

I set the scroll position to 1000 out of 1500 and the scroll time to 1 second. But in fact, it takes about 10 seconds to scroll to such a...

On iOS devices, when you tap the very top of the screen, the top status bar, it will scroll the visible listview or scrollview back to the top. When using...

When passing a duration to `scrollToIndex` that is smaller than 40µs (basically using it as a `jumpTo` with index), the call throws the following exception: ``` I/flutter ( 3806): 'package:flutter/src/widgets/scroll_activity.dart':...