react-native-gesture-handler
Version:
Experimental implementation of a new declarative API for gesture handling in react-native
15 lines (13 loc) • 338 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isPointerInBounds = isPointerInBounds;
function isPointerInBounds(view, {
x,
y
}) {
const rect = view.getBoundingClientRect();
return x >= rect.left && x <= rect.right && y >= rect.top && y <= rect.bottom;
}
//# sourceMappingURL=utils.js.map