You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to have access to the List (points property) but am having difficulty typing the points property that would be required.
The Point type which comes from the signature.dart package (which you use in your package, is not available to me (at least that is what the IDE says). If I try and import it, VSCode says Don't import implementation files from another package'. If I copy the class and enum into my file VSCode says its already defined. The IDE suggests I use the Point defined in the Math package which of course is wrong.
I see in the source that you have an import of 'src/widgets/signature.dart' to get at the type.
What is it I need to do so FormBuilderSignaturePad accepts and uses my points list so I can have access to it later.
The text was updated successfully, but these errors were encountered:
I figured it out.
I forked your project. Moved the class Point and enum out of the signature.dart and added it to the exports. I now have access to the points List.
I don't really need this, it was more of an exercise as my Dart skills need a lot of work.
I would like to have access to the List (points property) but am having difficulty typing the points property that would be required.
The Point type which comes from the signature.dart package (which you use in your package, is not available to me (at least that is what the IDE says). If I try and import it, VSCode says Don't import implementation files from another package'. If I copy the class and enum into my file VSCode says its already defined. The IDE suggests I use the Point defined in the Math package which of course is wrong.
I see in the source that you have an import of 'src/widgets/signature.dart' to get at the type.
What is it I need to do so FormBuilderSignaturePad accepts and uses my points list so I can have access to it later.
The text was updated successfully, but these errors were encountered: