Skip to Content
参考手册钩子

useViewport()

GitHub 上的源代码

¥Source on GitHub

useViewport 钩子是一种方便的方式,可以读取组件中 Viewport 的当前状态。使用此钩子的组件将在视口更改时重新渲染。

¥The useViewport hook is a convenient way to read the current state of the Viewport in a component. Components that use this hook will re-render whenever the viewport changes.

import { useViewport } from '@xyflow/react'; export default function ViewportDisplay() { const { x, y, zoom } = useViewport(); return ( <div> <p> The viewport is currently at ({x}, {y}) and zoomed to {zoom}. </p> </div> ); }

签名

¥Signature

#Returns

注释

¥Notes