Table constructor
const
Table({
- required List<
TableRow> rows, - TableSize defaultColumnWidth = const FlexTableSize(),
- TableSize defaultRowHeight = const IntrinsicTableSize(),
- Map<
int, TableSize> ? columnWidths, - Map<
int, TableSize> ? rowHeights, - Clip clipBehavior = Clip.hardEdge,
- TableTheme? theme,
- FrozenTableData? frozenCells,
- double? horizontalOffset,
- double? verticalOffset,
- Size? viewportSize,
Implementation
const Table({
required this.rows,
this.defaultColumnWidth = const FlexTableSize(),
this.defaultRowHeight = const IntrinsicTableSize(),
this.columnWidths,
this.rowHeights,
this.clipBehavior = Clip.hardEdge,
this.theme,
this.frozenCells,
this.horizontalOffset,
this.verticalOffset,
this.viewportSize,
});