CustomSlidable constructor

const CustomSlidable({
  1. required Widget child,
  2. Key? key,
  3. SlidableController? controller,
  4. Object? groupTag = 'list',
  5. bool enabled = true,
  6. bool closeOnScroll = true,
  7. ActionPane? startActionPane,
  8. ActionPane? endActionPane,
  9. Axis direction = Axis.horizontal,
  10. DragStartBehavior dragStartBehavior = DragStartBehavior.down,
  11. bool useTextDirection = true,
})

Slidable

Implementation

const CustomSlidable({
  required this.child,
  super.key,
  this.controller,
  this.groupTag = 'list',
  this.enabled = true,
  this.closeOnScroll = true,
  this.startActionPane,
  this.endActionPane,
  this.direction = Axis.horizontal,
  this.dragStartBehavior = DragStartBehavior.down,
  this.useTextDirection = true,
});