Damian Hrabaszcz
Damian Hrabaszcz
But that keeps ratio at all times. The author wants to keep the ratio when app is resized using controls at the corners, but not when resize using sides' center...
In React I can use keepRatio using useState. And then set keepRatio to false or true depending on OnResize events direction.
@AndrewPixel have you solved this?
@AndrewPixel Thought, I'd share my code as well. ``` onResizeStart={e => { // Keeping aspect ratio if resized using controls at the connection points of the edges if (Math.abs(e.direction[0]) !==...