combined_barcode_scanner 0.0.1-dev.1 copy "combined_barcode_scanner: ^0.0.1-dev.1" to clipboard
combined_barcode_scanner: ^0.0.1-dev.1 copied to clipboard

outdated

Barcode scanner package that combines multiple sources behind a simple interface

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

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()],
)
12
likes
0
pub points
59%
popularity

Publisher

verified publishericapps.com

Barcode scanner package that combines multiple sources behind a simple interface

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on combined_barcode_scanner