painter2
painter2 copied to clipboard
Painter2 inside a listView widget - Not able to draw vertically
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),
],
);
Is there a better way to place a painter inside listview and override the gesture behaviours? Thanks