combined_barcode_scanner

Creator: coderz1093

Last updated:

0 purchases

combined_barcode_scanner Image
combined_barcode_scanner Images

Languages

Categories

Add to Cart

Description:

combined barcode scanner

Combined barcode scanner #
This package contains the basis for creating new barcode scanners that can be combined
into a single barcode scanner source.
To implement a custom scanner, import this package and implement your custom subclass
of BarcodeScanner and BarcodeScannerController
Not found FastBarcodeScanner() #
see https://github.com/icapps/combined_barcode_scanner/issues/8
We are waiting for a merge in one of the dependencies. While we wait, you can use this "temporary" workaround
Example Usage #
BarcodeScannerWidget(
controller: _controller,
onScan: (code) {
print("GOT BARCODE =========== ${code.code}");
},
configuration: const ScannerConfiguration(
enableFormats: {BarcodeFormat.qr},
cameraConfiguration: CameraConfiguration(
frameRate: 30,
mode: BarcodeDetectionMode.continuous,
resolution: CameraResolution.medium,
type: CameraType.back,
),
),
scanners: [FastBarcodeScanner()],
)
copied to clipboard

License

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

Files In This Product:

Customer Reviews

There are no reviews.