HapticCustomScrollView constructor

const HapticCustomScrollView({
  1. required List<Widget> slivers,
  2. HapticPattern? onOverscroll,
  3. HapticPattern? onSnapToItem,
  4. Axis scrollDirection = Axis.vertical,
  5. ScrollController? controller,
  6. ScrollPhysics? physics,
  7. Key? key,
})

Creates a haptic custom scroll view

Implementation

const HapticCustomScrollView({
  required this.slivers,
  this.onOverscroll,
  this.onSnapToItem,
  this.scrollDirection = Axis.vertical,
  this.controller,
  this.physics,
  super.key,
});