AntdScrollable constructor

const AntdScrollable({
  1. Key? key,
  2. bool vertical = true,
  3. bool reversed = false,
  4. AntdScrollController? controller,
  5. ScrollPhysics? physics = const BouncingScrollPhysics(),
  6. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  7. ScrollBehavior? scrollBehavior,
  8. double cacheExtent = 1.5,
  9. CacheExtentStyle cacheExtentStyle = CacheExtentStyle.viewport,
  10. List<Widget>? slivers,
  11. Duration? throttle,
  12. double? edgeThreshold,
  13. AntdOnScrollEdge? onEdgeReached,
})

Implementation

const AntdScrollable(
    {super.key,
    super.vertical = true,
    super.reversed,
    super.controller,
    super.physics = const BouncingScrollPhysics(),
    super.dragStartBehavior = DragStartBehavior.start,
    super.scrollBehavior,
    super.cacheExtent = 1.5,
    super.cacheExtentStyle = CacheExtentStyle.viewport,
    super.slivers,
    super.throttle,
    super.edgeThreshold,
    super.onEdgeReached});