defaults constant

FdcGridStyle const defaults

Built-in grid surface, line, border, and selection treatment used before caller overrides are merged.

Implementation

static const FdcGridStyle defaults = FdcGridStyle(
  backgroundColor: Colors.white,
  disabledCellBackgroundColor: Colors.transparent,
  selectedCellBackgroundColor: Colors.transparent,
  gridLines: FdcGridLines.both,
  gridLineColor: defaultGridLineColor,
  verticalGridLines: FdcGridVerticalLines.rowsOnly,
  borderColor: defaultGridLineColor,
  selectedRowColor: Colors.transparent,
);