ReorderableFit<T extends Object> constructor
const
ReorderableFit<T extends Object>({ - Key? key,
- required List<T> children,
- required Widget itemBuilder(
- T data
),
- Widget decoratorBuilder(
- T data
)?,
- Widget overlayBuilder(
- T data
)?,
- Color? dividerColor,
- double dividerSize = 1,
- dynamic onReorder(
- T,
- int
)?,
- dynamic onAdded(
- T,
- int
)?,
- dynamic onDragStarted(
- T
)?,
- void onDoughBreak(
- T
)?,
- dynamic onDragEnd(
- T
)?,
- dynamic onDragCompleted(
- T
)?,
- dynamic onDraggableCanceled(
- T
)?,
- Color? hoverColor,
- Axis? axis,
- double? left,
- double? right,
- double? top,
- double? bottom,
- double? width,
- double? height,
- bool onWillAccept(
- T?
)?,
- void onLeave(
- T?
)?,
- Offset onOffset()?,
- bool useLongPress = false,
- bool allowEmptyTarget = false,
- bool allowDraggingLast = true,
- BoxConstraints? itemConstraints(
- T
)?,
- 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,
});