BsTable constructor

const BsTable({
  1. Key? key,
  2. BsVariant? variant,
  3. bool striped = false,
  4. bool stripedColumns = false,
  5. bool hover = false,
  6. bool bordered = false,
  7. bool borderless = false,
  8. bool small = false,
  9. Widget? caption,
  10. bool captionTop = false,
  11. BsTableResponsive responsive = BsTableResponsive.always,
  12. bool isResponsive = false,
  13. BsTableVerticalAlign verticalAlign = BsTableVerticalAlign.top,
  14. bool groupDivider = false,
  15. Map<int, TableColumnWidth>? columnWidths,
  16. TableColumnWidth defaultColumnWidth = const FlexColumnWidth(1.0),
  17. TextBaseline? textBaseline,
  18. TextDirection? textDirection,
  19. BsTableHead? head,
  20. BsTableFoot? foot,
  21. required List<BsTableRow> children,
})

Creates a BsTable.

Implementation

const BsTable({
  super.key,
  this.variant,
  this.striped = false,
  this.stripedColumns = false,
  this.hover = false,
  this.bordered = false,
  this.borderless = false,
  this.small = false,
  this.caption,
  this.captionTop = false,
  this.responsive = BsTableResponsive.always,
  this.isResponsive = false,
  this.verticalAlign = BsTableVerticalAlign.top,
  this.groupDivider = false,
  this.columnWidths,
  this.defaultColumnWidth = const FlexColumnWidth(1.0),
  this.textBaseline,
  this.textDirection,
  this.head,
  this.foot,
  required this.children,
});