PressDraggableGridView constructor

const PressDraggableGridView({
  1. Key? key,
  2. required int index,
  3. required VoidCallback onDragCancelled,
  4. Widget? feedback,
  5. Widget? childWhenDragging,
  6. required List<DraggableGridItem> list,
})

Implementation

const PressDraggableGridView({
  super.key,
  required this.index,
  required this.onDragCancelled,
  this.feedback,
  this.childWhenDragging,
  required this.list,
});