blue_bird_scanner

Creator: coderz1093

Last updated:

Add to Cart

Description:

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

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.