blue_bird_scanner 3.0.0+1 copy "blue_bird_scanner: ^3.0.0+1" to clipboard
blue_bird_scanner: ^3.0.0+1 copied to clipboard

PlatformAndroid

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
75%
popularity

Publisher

unverified uploader

A Flutter plugin for barcode scanning with BlueBird PDAs.

Repository (GitHub)
View/report issues

Topics

#barcode #qrcode #scanner #bluebird

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on blue_bird_scanner