StickyTable<T> constructor

StickyTable<T>({
  1. Key? key,
  2. TextStyle? columnStyle,
  3. TextStyle? rowStyle,
  4. dynamic onSort(
    1. String,
    2. bool
    )?,
  5. List<StickyColumn>? columns,
  6. Color? columnRowColor,
  7. TableBorder? rowBorder,
  8. TableBorder? columnBorder,
  9. dynamic onRowClick(
    1. T?
    )?,
  10. dynamic onRowRightClick(
    1. TapDownDetails,
    2. T?
    )?,
  11. List<StickyRows>? rows,
  12. Color? rowColor,
  13. T? selected,
  14. Map<int, TableColumnWidth>? columnWidths,
  15. EdgeInsets? columnPadding,
  16. EdgeInsets? rowPadding,
  17. Widget? emptyRow,
  18. ScrollController? scrollController,
})

Implementation

StickyTable(
    {super.key,
      this.columnStyle,
      this.rowStyle,
      this.onSort,
      this.columns,
      this.columnRowColor,
      this.rowBorder,
      this.columnBorder,
      this.onRowClick,
      this.onRowRightClick,
      this.rows,
      this.rowColor,
      this.selected,
      this.columnWidths,
      this.columnPadding,
      this.rowPadding,
      this.emptyRow,
      this.scrollController});