0 purchases
blue bird scanner
blue_bird_scanner #
A Flutter plugin for barcode scanning with BlueBird PDAs.
How to use #
final blueBirdScanner = BlueBirdScanner();
blueBirdScanner.scannerCallBack = this; // this must implement ScannerCallBack
@override
void onDecoded(String? result) {
setState(() {
_scannedCode = result;
});
}
@override
void onError(Exception error) {
setState(() {
_scannedCode = error.toString();
});
}
blueBirdScanner.startScanner();
blueBirdScanner.stopScanner();
copied to clipboard
Other plugins you may be interested in #
honeywell_scanner
zkc_scanner
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.