TableHeaderBuilder typedef

TableHeaderBuilder = Widget Function(BuildContext context, int columnIndex)

Signature for a function that renders headers in a ScrollableTableView.

Header builders are properties of the TableColumn, so each column specifies the builder for that column's header.

See also:

Implementation

typedef TableHeaderBuilder = Widget Function(
  BuildContext context,
  int columnIndex,
);