HorizontalTableAdapter constructor
const
HorizontalTableAdapter({
- Key? key,
- required List<
Widget> headerWidgets, - required List<
Widget> rowBuilder(- BuildContext context,
- int rowIndex
- required List<
double> columnWidths, - int frozenColumnCount = 0,
- required int rowCount,
- void onScrollControllersReady(
- ScrollController vertical,
- ScrollController horizontal
- Color? leftSideBackgroundColor,
- Color? rightSideBackgroundColor,
- Color? headerBackgroundColor,
- double headerHeight = 56.0,
- double itemHeight = 52.0,
Implementation
const HorizontalTableAdapter({
super.key,
required this.headerWidgets,
required this.rowBuilder,
required this.columnWidths,
this.frozenColumnCount = 0,
required this.rowCount,
this.onScrollControllersReady,
this.leftSideBackgroundColor,
this.rightSideBackgroundColor,
this.headerBackgroundColor,
this.headerHeight = 56.0,
this.itemHeight = 52.0,
});