blue_bird_scanner 2.0.1+5 copy "blue_bird_scanner: ^2.0.1+5" to clipboard
blue_bird_scanner: ^2.0.1+5 copied to clipboard

PlatformAndroid
outdated

A Flutter plugin for barcode scanning with BlueBird PDAs.

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();

Other plugins you may be interested in #

8
likes
120
pub points
74%
popularity

Publisher

unverified uploader

A Flutter plugin for barcode scanning with BlueBird PDAs.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on blue_bird_scanner