android | ||
ios | ||
www | ||
.gitignore | ||
plugin.xml | ||
README.md |
ZBar Barcode Scanner Plugin
This plugin integrates with the ZBar library, exposing a JavaScript interface for scanning barcodes (QR, 2D, etc).
API
Scan barcode
cloudSky.zBar.scan(params, onSuccess, onFailure)
Arguments:
- params: Unused for now. Will be an object in the future if we extend this plugin with options to specify scannable barcode types, etc.
- onSuccess: function (s) {...} Callback for successful scan.
- onFailure: function (s) {...} Callback for cancelled scan or error.
Return:
- success('scanned bar code') Successful scan with value of scanned code
- error('cancelled') If user cancelled the scan (with back button etc)
- error('misc error message') Misc failure
Status:
- Android: DONE
- iOS: DONE