flutter_sticky_infinite_list
flutter_sticky_infinite_list copied to clipboard
Multi directional infinite list with Sticky headers for Flutter applications
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...
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...
Is there a way to detect which Item is visible if InfiniteListItems has different sizes?
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,...