bat_mx7800_scandevice 1.0.3+1 copy "bat_mx7800_scandevice: ^1.0.3+1" to clipboard
bat_mx7800_scandevice: ^1.0.3+1 copied to clipboard

PlatformAndroid

Flutter plugin for ScanDevice SDK for use on .BAT MX7800 Series.

bat_mx7800_scandevice #

Flutter plugin for ScanDevice SDK for use on devices .BAT MX7800 Series. With this plugin you can easily control the basic functions of barcode scanner of the device (open, close, manual scan, etc).

Supported #

  • MX7800-A

  • MX7800-X

  • MX7800-XR

  • Maybe work on your PDA with SDK version 2.1.1 or later. Test and enjoy!

Installation #

Add this to your package's pubspec.yaml file:

dependencies:
 bat_mx7800_scandevice: ^any

Usage #

    1. Declare scanner
final scanner = BatMx7800Scandevice();
    1. Initialize the interface with Init() method
void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  final scanOK = await scanner.init(); //MANDATORY.. INITIALIZE THE SCANNER INTERFACE
  runApp(const MyApp());
}
    1. Create a listener for catch barcodes readed
 @override
  void initState() {
    super.initState();

    //add listenner for capture the readed barcode
    scanner.listeners.add((message) {
      setState(() {
        _barcodeReaded = message;
      });
    });
  }

Contribute #

We would ❤️ to see your contribution!

Did you like this plugin? Give me a coffee 😍 https://www.paypal.com/donate/?hosted_button_id=C7W7WEY2HXEHU

About #

Created by Nilcemar Ferreira - .BAT Tecnologia Made in Brazil 🇧🇷

instagram: @battecnologia site: https://www.battecnologia.com

1
likes
150
pub points
0%
popularity

Publisher

verified publisherbattecnologia.com

Flutter plugin for ScanDevice SDK for use on .BAT MX7800 Series.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on bat_mx7800_scandevice