BasicTableCellBuilder typedef

BasicTableCellBuilder = Widget Function(BuildContext context, int rowIndex, int columnIndex)

Signature for a function that renders cells in a BasicTableView.

Cell builders are properties of the BasicTableColumn, so each column specifies the cell builder for cells in that column.

Implementation

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