table_view_typedefs library
Typedefs
- TableCellBuilder = Widget Function(BuildContext context, int column)
- Function used to build a widget for passed cell in a row.
- Function used to build the final widget representing the footer of a table.
- TableHeaderBuilder = Widget Function(BuildContext context, TableRowContentBuilder contentBuilder)
- Function used to build the final widget representing the header of a table.
- TablePlaceholderBuilder = Widget Function(BuildContext context, TableRowContentBuilder contentBuilder)
- Function used to build the final widget used for all the placeholder of a table.
- TablePlaceholderRowBuilder = Widget? Function(BuildContext context, int row, TableRowContentBuilder contentBuilder)
- Function used to build the final widget representing a placeholder row of a table.
- TableRowBuilder = Widget? Function(BuildContext context, int row, TableRowContentBuilder contentBuilder)
- Function used to build the final widget representing a row of a table.
- TableRowContentBuilder = Widget Function(BuildContext context, TableCellBuilder cellBuilder)
- Function used to build the inner content of a row of a table.