DrawingView icon indicating copy to clipboard operation
DrawingView copied to clipboard

I want to disable the zoom function

Open jpyo0613 opened this issue 1 year ago • 0 comments

I want to disable the zoom function and a listener that can know the beginning and end of drawing.

like..

canvas.rasmContext.addDrawingChangeListener(DrawingChangeListener() {
    @Override
        fun onTouchStart() {
            
        }

            @Override
        fun onTouchEnd() {
            
        }

(option)
    @Override
        public void onDrawingChange(float x, float y) {
            
        }
})

Thank you for sharing this very well-made library 👍

jpyo0613 avatar Oct 16 '24 16:10 jpyo0613