combined_barcode_scanner_fast 1.1.0 copy "combined_barcode_scanner_fast: ^1.1.0" to clipboard
combined_barcode_scanner_fast: ^1.1.0 copied to clipboard

Combined Barcode scanner package that interfaces the fast_barcode_scanner package

fast_barcode_scanner combined scanner implementation #

This implementation of a combined scanner (see https://pub.dev/packages/combined_barcode_scanner) uses the https://pub.dev/packages/fast_barcode_scanner package to scan qr codes

Please follow the installation instructions in https://pub.dev/packages/fast_barcode_scanner and https://pub.dev/packages/combined_barcode_scanner

Example #

BarcodeScannerWidget(
  controller: _controller,
  onScan: (code) {
    if (kDebugMode) {
      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()],
);
0
likes
160
points
137
downloads

Publisher

verified publishericapps.com

Weekly Downloads

Combined Barcode scanner package that interfaces the fast_barcode_scanner package

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

combined_barcode_scanner, flutter, icapps_fast_barcode_scanner

More

Packages that depend on combined_barcode_scanner_fast