ClickableListWheelScrollView constructor
const
ClickableListWheelScrollView({
- Key? key,
- required ScrollController scrollController,
- double? listHeight,
- required ListWheelScrollView child,
- required double itemHeight,
- bool scrollOnTap = true,
- OnItemTapCallback? onItemTapCallback,
- required int itemCount,
- bool loop = false,
- 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);