simple_barcode_scanner

Creator: coderz1093

Last updated:

Add to Cart

Description:

simple barcode scanner

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



Android
IOS












Window
Web









Features #

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

Installation and configuration #

Mobile device uses flutter_barcode_scanner. refer flutter_barcode_scanner for installation and setup
Web uses html5-qrcode on IFrameElement. Setup is not required. For more you can read html5-qrcode
Window uses html5-qrcode on webview_windows.

Getting started #
simple_barcode_scanner: ^0.0.8

copied to clipboard
Import the library:
import 'package:simple_barcode_scanner/simple_barcode_scanner.dart';

copied to clipboard
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'),
)
copied to clipboard
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 #

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.