BsTable constructor
const
BsTable({
- Key? key,
- BsTableVariant? variant,
- bool striped = false,
- bool stripedColumns = false,
- bool hover = false,
- bool bordered = false,
- bool borderless = false,
- bool small = false,
- Widget? caption,
- bool captionTop = false,
- BsTableResponsive responsive = BsTableResponsive.always,
- bool isResponsive = false,
- BsTableVerticalAlign verticalAlign = BsTableVerticalAlign.top,
- bool groupDivider = false,
- Map<
int, TableColumnWidth> ? columnWidths, - TableColumnWidth defaultColumnWidth = const FlexColumnWidth(1.0),
- TextBaseline? textBaseline,
- TextDirection? textDirection,
- BsTableHead? head,
- BsTableFoot? foot,
- 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,
});