HapticScrollView constructor

const HapticScrollView({
  1. required List<Widget> children,
  2. HapticPattern? onOverscroll,
  3. HapticPattern? onSnapToItem,
  4. HapticPattern? onScroll,
  5. Axis scrollDirection = Axis.vertical,
  6. bool reverse = false,
  7. ScrollController? controller,
  8. ScrollPhysics? physics,
  9. EdgeInsets padding = EdgeInsets.zero,
  10. Key? key,
})

Creates a haptic scroll view

Implementation

const HapticScrollView({
  required this.children,
  this.onOverscroll,
  this.onSnapToItem,
  this.onScroll,
  this.scrollDirection = Axis.vertical,
  this.reverse = false,
  this.controller,
  this.physics,
  this.padding = EdgeInsets.zero,
  super.key,
});