getOffset method

Offset getOffset(
  1. CellOffset cellOffset
)

Get the top-left corner of the cell at cellOffset in pixels.

Implementation

Offset getOffset(CellOffset cellOffset) {
  final row = cellOffset.y;
  final col = cellOffset.x;
  final x = col * _painter.cellSize.width;
  final y = row * _painter.cellSize.height;
  return Offset(x + _padding.left, y + _padding.top - _scrollOffset);
}