SfDataGridThemeData constructor

const SfDataGridThemeData({
  1. Color? gridLineColor,
  2. double? gridLineStrokeWidth,
  3. Color? selectionColor,
  4. DataGridCurrentCellStyle? currentCellStyle,
  5. Color? frozenPaneLineColor,
  6. double? frozenPaneLineWidth,
  7. Color? sortIconColor,
  8. Color? headerColor,
  9. Color? headerHoverColor,
  10. double? frozenPaneElevation,
  11. Color? columnResizeIndicatorColor,
  12. double? columnResizeIndicatorStrokeWidth,
  13. Color? rowHoverColor,
  14. TextStyle? rowHoverTextStyle,
  15. Widget? sortIcon,
  16. Widget? filterIcon,
  17. Color? filterIconColor,
  18. Color? filterIconHoverColor,
  19. Color? sortOrderNumberColor,
  20. Color? sortOrderNumberBackgroundColor,
  21. TextStyle? filterPopupTextStyle,
  22. TextStyle? filterPopupDisabledTextStyle,
  23. Color? columnDragIndicatorColor,
  24. double? columnDragIndicatorStrokeWidth,
  25. Widget? groupExpanderIcon,
  26. double? indentColumnWidth,
  27. Color? indentColumnColor,
})

Create a SfDataGridThemeData that's used to configure a SfDataGridTheme.

Implementation

const SfDataGridThemeData(
    {this.gridLineColor,
    this.gridLineStrokeWidth,
    this.selectionColor,
    this.currentCellStyle,
    this.frozenPaneLineColor,
    this.frozenPaneLineWidth,
    this.sortIconColor,
    this.headerColor,
    this.headerHoverColor,
    this.frozenPaneElevation,
    this.columnResizeIndicatorColor,
    this.columnResizeIndicatorStrokeWidth,
    this.rowHoverColor,
    this.rowHoverTextStyle,
    this.sortIcon,
    this.filterIcon,
    this.filterIconColor,
    this.filterIconHoverColor,
    this.sortOrderNumberColor,
    this.sortOrderNumberBackgroundColor,
    this.filterPopupTextStyle,
    this.filterPopupDisabledTextStyle,
    this.columnDragIndicatorColor,
    this.columnDragIndicatorStrokeWidth,
    this.groupExpanderIcon,
    this.indentColumnWidth,
    this.indentColumnColor});