A React Hook that allows you to detect X and Y overflow.
npm install --save use-overflow
OR
yarn add use-overflow
import * as React from 'react'
import { useOverflow } from 'use-overflow'
const Example = () => {
const horizonstalRef = React.useRef(null);
const { refXOverflowing, refXScrollBegin, refXScrollEnd } = useOverflow(horizonstalRef);
const verticalRef = React.useRef(null);
const { refYOverflowing, refYScrollBegin, refYScrollEnd } = useOverflow(verticalRef);
return (
<div>
{/* Conditional do stuff based on overflow! */}
</div>
)
}
MIT © amorriscode
This hook is created using create-react-hook.