getMinMaxRowHeight method

(double, double) getMinMaxRowHeight(
  1. DataTableThemeData dataTableTheme
)

Implementation

(double, double) getMinMaxRowHeight(DataTableThemeData dataTableTheme) {
  final double effectiveDataRowMinHeight = dataRowHeight ??
      dataTableTheme.dataRowMinHeight ??
      kMinInteractiveDimension;
  // Reverting min/max csupport to single row height value in order not to have troubles
  // with sticky column cells
  // https://github.com/maxim-saplin/data_table_2/issues/191
  // final double effectiveDataRowMaxHeight = dataRowMaxHeight ??
  //     dataTableTheme.dataRowMaxHeight ??
  //     dataTableTheme.dataRowMaxHeight ??
  //     kMinInteractiveDimension;

  return (effectiveDataRowMinHeight, effectiveDataRowMinHeight);
}