Is there a nuget package that allows you to make digital signature by drawing on the screen, or even a nuget that is something like a Paint where you can draw on the screen and save as an image?
Is there a nuget package that allows you to make digital signature by drawing on the screen, or even a nuget that is something like a Paint where you can draw on the screen and save as an image?
Yes. There are some on the market, but I recommend one I've already used and I know it works fine: SignaturePad .
This is a open source component for collecting subscriptions with Xamarin.Forms from Microsoft itself.
The declaration in XAML is very simple:
<controls:SignaturePad x:Name="signatureView" StrokeWidth="3" StrokeColor="White" Background="Black" />
And the component already gives you the signature image as a Stream
for you to work as you like, or as Point[]
, if you choose to store the signature virtually and redraw at a later time.
I hope I have helped.