limitResizeColumn method

  1. @override
bool limitResizeColumn(
  1. PlutoColumn column,
  2. double offset
)
inherited

When expanding the width of the freeze column, check the width constraint of the freeze column.

Implementation

@override
bool limitResizeColumn(PlutoColumn column, double offset) {
  if (offset <= 0) {
    return false;
  }

  return _limitFrozenColumn(column.frozen, offset);
}