We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The page.ts code gives an error in the part where we create an event listener for resizing and using the reference of fabric.js.
{ const canvasRef = useRef(null); const fabricRef = useRef<fabric.Canvas | null>(null); const isDrawing = useRef(false); const shapeRef = useRef<fabric.Object | null>(null); const selectedShapeRef = useRef<String | null>(null);
useEffect(() => { const canvas = initializeFabric({ canvasRef, fabricRef})
canvas.on("mouse:down", (options) => { handleCanvasMouseDown({ options, canvas, isDrawing, shapeRef, selectedShapeRef, }) }) window.addEventListener("resize", () => { handleResize({fabricRef}) })
}), []; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The page.ts code gives an error in the part where we create an event listener for resizing and using the reference of fabric.js.
{
const canvasRef = useRef(null);
const fabricRef = useRef<fabric.Canvas | null>(null);
const isDrawing = useRef(false);
const shapeRef = useRef<fabric.Object | null>(null);
const selectedShapeRef = useRef<String | null>(null);
useEffect(() => {
const canvas = initializeFabric({ canvasRef, fabricRef})
}), [];
}
The text was updated successfully, but these errors were encountered: