simple_barcode_scanner 0.1.1 copy "simple_barcode_scanner: ^0.1.1" to clipboard
simple_barcode_scanner: ^0.1.1 copied to clipboard

Scanner plugin for Barcode/QR code. Scan using flutter_barcode_scanner for mobile device and html5-qrcode for web and windows

simple_barcode_scanner #

simple_barcode_scanner that let you scan barcode and qr code in mobile,web and windows.

Demo #

Android IOS
drawing drawing
Window Web
drawing drawing

Features #

  • Scan barcode in mobile devices using flutter_barcode_scanner
  • Scan barcode in web/window using html5-qrcode package

Installation and configuration #

Getting started #

simple_barcode_scanner: ^0.0.8

Import the library:

import 'package:simple_barcode_scanner/simple_barcode_scanner.dart';

Usage #

   ElevatedButton(
              onPressed: () async {
                var res = await Navigator.push(
                    context,
                    MaterialPageRoute(
                      builder: (context) => const SimpleBarcodeScannerPage(),
                    ));
                setState(() {
                  if (res is String) {
                    result = res;
                  }
                });
              },
              child: const Text('Open Scanner'),
            )

Todo #

  • Flash and switch camera are only available in mobile devices
  • Enhancement

Note #

Feel free to fork and send pull request. If you have any questions, feedback or ideas,You can create an issue. If you enjoy this project, I'd appreciate your 🌟 on GitHub.

You can also buy me a cup of coffee #

115
likes
130
pub points
97%
popularity

Publisher

verified publisherkharagedition.com

Scanner plugin for Barcode/QR code. Scan using flutter_barcode_scanner for mobile device and html5-qrcode for web and windows

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_barcode_scanner, path, permission_handler, webview_windows

More

Packages that depend on simple_barcode_scanner