ReorderableFit<T extends Object> constructor

const ReorderableFit<T extends Object>({
  1. Key? key,
  2. required List<T> children,
  3. required Widget itemBuilder(
    1. T data
    ),
  4. Widget decoratorBuilder(
    1. T data
    )?,
  5. Widget overlayBuilder(
    1. T data
    )?,
  6. Color? dividerColor,
  7. double dividerSize = 1,
  8. dynamic onReorder(
    1. T,
    2. int
    )?,
  9. dynamic onAdded(
    1. T,
    2. int
    )?,
  10. dynamic onDragStarted(
    1. T
    )?,
  11. void onDoughBreak(
    1. T
    )?,
  12. dynamic onDragEnd(
    1. T
    )?,
  13. dynamic onDragCompleted(
    1. T
    )?,
  14. dynamic onDraggableCanceled(
    1. T
    )?,
  15. Color? hoverColor,
  16. Axis? axis,
  17. double? left,
  18. double? right,
  19. double? top,
  20. double? bottom,
  21. double? width,
  22. double? height,
  23. bool onWillAccept(
    1. T?
    )?,
  24. void onLeave(
    1. T?
    )?,
  25. Offset onOffset()?,
  26. bool useLongPress = false,
  27. bool allowEmptyTarget = false,
  28. bool allowDraggingLast = true,
  29. BoxConstraints? itemConstraints(
    1. T
    )?,
  30. BorderRadius? borderRadius,
})

Implementation

const ReorderableFit({
  super.key,
  required this.children,
  required this.itemBuilder,
  this.decoratorBuilder,
  this.overlayBuilder,
  this.dividerColor,
  this.dividerSize = 1,
  this.onReorder,
  this.onAdded,
  this.onDragStarted,
  this.onDoughBreak,
  this.onDragEnd,
  this.onDragCompleted,
  this.onDraggableCanceled,
  this.hoverColor,
  this.axis,
  this.left,
  this.right,
  this.top,
  this.bottom,
  this.width,
  this.height,
  this.onWillAccept,
  this.onLeave,
  this.onOffset,
  this.useLongPress = false,
  this.allowEmptyTarget = false,
  this.allowDraggingLast = true,
  this.itemConstraints,
  this.borderRadius,
});