TTableActionButtons constructor

const TTableActionButtons({
  1. Key? key,
  2. bool view = false,
  3. bool edit = true,
  4. bool delete = true,
  5. VoidCallback? onViewPressed,
  6. VoidCallback? onEditPressed,
  7. VoidCallback? onDeletePressed,
  8. double iconSize = 24.0,
  9. double spacing = 8.0,
  10. bool tooltipEnabled = true,
})

Widget for displaying action buttons for table rows

Implementation

const TTableActionButtons({
  super.key,
  this.view = false,
  this.edit = true,
  this.delete = true,
  this.onViewPressed,
  this.onEditPressed,
  this.onDeletePressed,
  this.iconSize = 24.0,
  this.spacing = 8.0,
  this.tooltipEnabled = true,
});