checkHit method

int checkHit(
  1. int x,
  2. int y
)

Queries the low-level native/debug hit grid.

Built-in widgets use render-tree hit testing for pointer routing.

Implementation

int checkHit(int x, int y) {
  _checkNotDisposed();
  return _bindings.checkHit(_handle, x, y);
}