ClickableListWheelScrollView constructor

const ClickableListWheelScrollView({
  1. Key? key,
  2. required ScrollController scrollController,
  3. double? listHeight,
  4. required ListWheelScrollView child,
  5. required double itemHeight,
  6. bool scrollOnTap = true,
  7. OnItemTapCallback? onItemTapCallback,
  8. required int itemCount,
  9. bool loop = false,
  10. Duration animationDuration = _defaultAnimationDuration,
})

Implementation

const ClickableListWheelScrollView({
  Key? key,
  required this.scrollController,
  this.listHeight,
  required this.child,
  required this.itemHeight,
  this.scrollOnTap = true,
  this.onItemTapCallback,
  required this.itemCount,
  this.loop = false,
  this.animationDuration = _defaultAnimationDuration,
}) : super(key: key);