painter2
painter2 copied to clipboard
A fork of the original flutter painter plugin with missing features. Paint with your fingers for flutter!
Will exportAsPNGBytes method reduce image quality?
Hi, first of all thanks so much for this library. I am making a drawing app, and I would like to be able to save and load different paintings. Which...
Unable to draw vertically when placed inside a ListView widget. ``` PainterController controller = PainterController(); controller.thickness = 5.0; controller.backgroundColor = Colors.green; ListView( shrinkWrap: true, children: [ Painter(controller), ], ); ```...
Hi! Nice plugin, thanks a lot! The only issue I faced: once you just tap on the canvas, nothing is painted, no dot. Only if you swipe for a short,...