I am using Konva Js library to draw Rect. So after drawing a React and release the mouse i need Transformer to activate around the Rect.?
Currently when drawing a Rect and after click on it my Transformer is activating.Now what i want is when draw a Rect and on mouse release i want to activate Transformer for Resizing? const handleMouseUp = (e: any) => { setIsDragging(false); const stage = e.target.getStage(); if (stage) { const container = stage.container(); if (container) { […]