qrcode_barcode_scanner 3.0.1 copy "qrcode_barcode_scanner: ^3.0.1" to clipboard
qrcode_barcode_scanner: ^3.0.1 copied to clipboard

PlatformAndroid

Plugins to manage the reading of QR code or barcode from an external device as a keyboard.

qrcode_barcode_scanner #

Plugin for managing QR and BAR code reading from an external device.

Important #

THIS PACKAGE WILL WORK ONLY IN ANDROID!


Class Name #

QrcodeBarcodeScanner

Variables #

ScannedCallback onScannedCallback;   //void Function(String scannedCode);

Example #

String? _scanValue;

@override
  void initState() {
    super.initState();
    QrcodeBarcodeScanner(
      onScannedCallback: (String value) => setState(
        () {
          _scanValue = value;
        },
      ),
    );
  }

Installation #

flutter pub add qrcode_barcode_scanner

Tested Devices #

  • Sunmi Blink
3
likes
140
pub points
79%
popularity

Publisher

verified publisherfrancescodema.dev

Plugins to manage the reading of QR code or barcode from an external device as a keyboard.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on qrcode_barcode_scanner