https://github.com/m1ga/hyperloop.scratchview
Axway Hyperloop scratch view for Android
https://github.com/m1ga/hyperloop.scratchview
andorid appcelerator axway hyperloop
Last synced: about 2 months ago
JSON representation
Axway Hyperloop scratch view for Android
- Host: GitHub
- URL: https://github.com/m1ga/hyperloop.scratchview
- Owner: m1ga
- License: other
- Created: 2018-08-02T18:58:50.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-02T19:05:46.000Z (almost 7 years ago)
- Last Synced: 2025-03-29T01:13:12.913Z (2 months ago)
- Topics: andorid, appcelerator, axway, hyperloop
- Language: JavaScript
- Size: 1.08 MB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hyperloop Scratch View
Axway Hyperloop example of an Android scratch view

Library: (modified)
```javascript
var scratchview = require("/scratchview");
scratchview.setEraserSize(30);
scratchview.setMaxPercent(50);
scratchview.onProgress(function(percent){
console.log(percent);
})
scratchview.onCompleted(function(){
console.log("done");
})
```