flutter_barcode_listener

Creator: coderz1093

Last updated:

Add to Cart

Description:

flutter barcode listener

flutter_barcode_listener #
Listen for any hardware barcode scanner
Problems with barcode scanning #
If you need to get barcode scanned from some hardware barcode scanner you generally have few ways to do it.

implement some text input control (IE. TextEdit), call focus on it and make the scan
listen for some special system event (IE. intent fired from Android service)
listen for raw keyboard events

First aproach is simple, and if you're ok to catch scanned barcodes only when you have focus on text control you're good to go and you don't need this package.
If you however need to somehow get scanned barcodes even when you don't have focus on text input control (or no text input control at all) you're left with two other options.
Listening for special system events (IE. Anroid service intents) is always tied for specific manufacturer/device that usually comes with some kind of SDK you need to implement. This means you're implementation will support listening barcode scannes only for this devices you implemented. Plus, it's not really cross platform friendly
And there's third way, simply listen for raw keyboard events and figure out what's barcode and what's not. Downside of this solution is that you need to figure out what's actual user interaction and what's barcode scan. Upside is it doesn't require any per manufacturer/device implementation and you're pretty much suporting all barcode scanners, including external ones with bluetooth or wifi. And it's cross platform friendly.
Implementation idea #
All hardware barcode devices have few things in common

they act as a keyboard when barcode is scanned
all keyboard events are fired in extremly small time frame (less than 100 ms between each character)
barcode is terminated with special character (enter in majority)

So to figure out what is actual barcode and what is simple keyboard event that should be ignored this package uses following logic

listen for physical keyboard raw key up event
filter out only 'REAL' characters (ASCII codes lower than 256, without special characters except enter)
on each new key check if previous key is older than bufferDuration, if it's older clear internal buffer.
check if new key is enter key, if it is call onBarcodeScanned callback and clear buffer
if it's not enter key just append it to internal buffer;

Basically it translates to: if you get bunch of keys comming really fast that end with enter key it's a BINGO.

License

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

Customer Reviews

There are no reviews.