flutter_sticky_infinite_list icon indicating copy to clipboard operation
flutter_sticky_infinite_list copied to clipboard

Multi directional infinite list with Sticky headers for Flutter applications

Results 5 flutter_sticky_infinite_list issues
Sort by recently updated
recently updated
newest added

Sometimes you have your own slivers in addition to the list, e.g. a `SliverPersistentHeader` on top and `SliverToBoxAdapter` at the bottom. These 2 properties allow you to do that. Dart...

It would be great if dividers can be added without much hassle. I've made a fork, and have divider working, but I'm lazy so it only works for my use...

enhancement

Is there an small example for lazy loading with this great plugin? I want to lazily load and display small chunks of new items each time the user reached the...

question

Is there a way to detect which Item is visible if InfiniteListItems has different sizes?

question

At the first start I want to show a specific item of my InfiniteList. How is that possible? ``` InfiniteList( controller: controller, direction: InfiniteListDirection.single, //negChildCount: 2, posChildCount: _allItems.length, scrollDirection: Axis.horizontal,...

question