Hi Lubo,
We have checked your requirement and using the GetSignatureAsync
method of signature component, we can get the signature as base64 URL and
will save it in database shown as below.
private async Task onSave()
{
base64Url = await signature.GetSignatureAsync();
}
|
And using the LoadAsync
method signature component, we can load the saved signature (base64 URL) from
database to signature component.
private async Task onLoad()
{
await signature.LoadAsync(base64Url);
}
|
Check with attached sample code file and get back to us
if you need any further assistance on this.
Regards,
YuvanShankar A
Attachment:
Index_430477e1.zip