whiteboardkit
whiteboardkit copied to clipboard
A Flutter whiteboard widget.
controller.addChunk(chunk); Controller have no method called "addChunk" as written in documentation
How to make this support multi users? I receive chunks from other users. But how to add them with our draw?
- Save the json - create a column with the whiteboard widget - init the data var draw = WhiteboardDraw.fromJson(widget.data ?? newData); drawController = new DrawingController(draw: draw); result: a white...
- create a paybackcontroller - load your json with the custom constructor and pass it via draw - call controller.animator.skip(); result: nothing is skipped
- navigate to new route - create willpopscope - a column with some widgets and the whiteboard widget - return true on willpopscope on Backnavigation result: it stays on the...