Last updated:
0 purchases
scanning gun
Scanner_Gun #
This is an unofficial FlutterPlugin to connect flutter code with a Scanning_Gun from Hopeland #
This is an unofficial FlutterPlugin Scanning_Gun, in this first version, you my connect your flutter app with a Scanning Gun from Hopeland Company.
Features #
Scan the Qr code or Barcode adding the function to a button o the screen.
Scan the Qr code or Barcode by clicking the button on the Scanner Gun.
Easy use #
First declare the class and instantiate.
ScannerGun scannerGun = ScannerGun();
copied to clipboard
Then initialize the scannerGun.
@override
void initState(){
super.initState();
setState(() {
scannerGun.initialize();
});
}
copied to clipboard
And finally call the scan function to get the Scanner response.
scannerGun.scan().then((value){
print("Here is the Scanner Response $value");
});
copied to clipboard
Steps #
The example was tested on the Hopeland HY820
Run the example and click on the Scan TextButton
You will get the response a few moments later
Installation #
Install the dependencies.
flutter pub add scanning_gun
copied to clipboard
The library was completely made with dart and is still under development, hope this library can help you the same way is helping me. Here is the link to Github - Project example.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.