4Q-s-r-o / signature

Flutter plugin that creates a canvas for writing down a signature
MIT License
252 stars 83 forks source link

Multiple controllers at time #72

Closed alexlovar closed 1 year ago

alexlovar commented 1 year ago

I have a widget that requires multiple and different signatures, I'm creating a list of controllers:

List<SignatureController> controllerSign= [SignatureController( ...... )];

and initialize this with a loop:

for(int i=0; i< 20;i++){ controllerSign.add(controllerSign[i]); }

nevertheless, when I draw the sign on one all canvas show the same draw, as if there was only one controller.