FollyTable constructor

  1. @Deprecated('Use BasicTable instead.')
const FollyTable({
  1. required int rowsCount,
  2. required List<FollyTableColumnBuilder> columnBuilders,
  3. double headerHeight = 16.0,
  4. double rowHeight = 16.0,
  5. void onRowTap(
    1. int row
    )?,
  6. double dividerHeight = 1.0,
  7. double scrollBarThickness = 8.0,
  8. int scrollTimeout = 300,
  9. bool verticalScrollAlwaysVisible = true,
  10. bool horizontalScrollAlwaysVisible = true,
  11. int freezeColumns = 0,
  12. Set<PointerDeviceKind>? dragDevices,
  13. Key? key,
})

Implementation

@Deprecated('Use BasicTable instead.')
const FollyTable({
  required this.rowsCount,
  required this.columnBuilders,
  this.headerHeight = 16.0,
  this.rowHeight = 16.0,
  this.onRowTap,
  this.dividerHeight = 1.0,
  this.scrollBarThickness = 8.0,
  this.scrollTimeout = 300,
  this.verticalScrollAlwaysVisible = true,
  this.horizontalScrollAlwaysVisible = true,
  this.freezeColumns = 0,
  this.dragDevices,
  super.key,
});