globalPaintBounds property

Rect? get globalPaintBounds

Returns a Rect representing the RenderObject.paintBounds of the Object this GlobalKey represents.

Implementation

Rect? get globalPaintBounds {
  final renderObject = currentContext?.findRenderObject();
  final matrix = renderObject?.getTransformTo(null);

  if (matrix != null && renderObject?.paintBounds != null) {
    final rect = MatrixUtils.transformRect(matrix, renderObject!.paintBounds);
    return rect;
  } else {
    return null;
  }
}