cordova plugin add https://github.com/hitmacreed/Cordova-Plugin-Scratch.git
ionic cordova plugin add https://github.com/hitmacreed/Cordova-Plugin-Scratch.git
This requires cordova Platform Android 8.0+
This Plugin accepts images from drawable folder and Url.
In Android 9.0+ only accepts https Urls
"ONLY => Scratched Card Image" can accept drawable or Url
Declare in your component
declare var ScratchPlugin: any;
Syntax
ScratchPlugin.draw('My Toast Message', 'Scratch Card Image', 'Scratched Card Image', 'My Title Card', 'My Title Color Hex', 'My Background', function(mkay) {
console.log(mkay);
}, function(err) {
console.log(err);
});
Example of usage with drawable
ScratchPlugin.draw('You Won!', '@drawable/scratch_card', '@drawable/winner', 'Scratch to Win', '#ffffe6', '@drawable/background', function(mkay) {
console.log(mkay);
}, function(err) {
console.log(err);
});
Example of usage with Url
ScratchPlugin.draw('You Won!', '@drawable/scratch_card', 'https://i.imgur.com/DvpvklR.png', 'Scratch to Win', '#ffffe6', '@drawable/background', function(mkay) {
console.log(mkay);
}, function(err) {
console.log(err);
});
https://square.github.io/picasso/
https://github.com/goibibo/ScratchCardView