Handle constructor

const Handle({
  1. Key? key,
  2. required Widget child,
  3. Duration delay = Duration.zero,
  4. bool capturePointer = true,
  5. bool vibrate = true,
  6. bool enabled = true,
})

Creates a widget that can initiate a drag/reorder of an item inside an ImplicitlyAnimatedReorderableList.

A Handle must have a Reorderable and an ImplicitlyAnimatedReorderableList as its ancestor.

Implementation

const Handle({
  Key? key,
  required this.child,
  this.delay = Duration.zero,
  this.capturePointer = true,
  this.vibrate = true,
  this.enabled = true,
}) : super(key: key);