list_wheel_scroll_view_nls 0.0.5
list_wheel_scroll_view_nls: ^0.0.5 copied to clipboard
A flutter project which add scroll direction to ListWheelScrollView allowing you to have horizontal ListWheelScroolView.
list_wheel_scroll_view_nls #
A Flutter package that extends ListWheelScrollView to support scrollDirection, enabling horizontal scrolling.
Usage #
Simply use ListWheelScrollViewX instead of ListWheelScrollView and provide the scrollDirection.
ListWheelScrollViewX(
scrollDirection: Axis.horizontal,
itemExtent: 100,
children: [
// Your children here
],
)
Features #
- Horizontal Scrolling: Supports both vertical and horizontal layouts.
- Physics: Properly respects
physicsparameter. - Restoration: Supports state restoration via
restorationId.