An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# Hyperloop Scratch View

Axway Hyperloop example of an Android scratch view

![preview](image.png)

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");
})
```