nativescript-community / nativescript-drawingpad

:pencil: NativeScript plugin to provide a way to capture any drawing (signatures are a common use case) from the device
Apache License 2.0
90 stars 32 forks source link

Bug Documentation Angular Section #62

Closed edyrkaj closed 3 years ago

edyrkaj commented 3 years ago

At documentation section angular there is wrong use of response data from Promise

.then((data) => 
//wrong:
 const img = new ImageSource(res); 

//correct:
 const img = new ImageSource(data);