Flutter Plugin for Scandit Barcode Scanning
This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
- Scan a barcode on demand
- Android
- iOS
First, add flutter_scandit
as a dependency in your pubspec.yaml file.
Add the following to the ios/Runner/Info.plist
:
- The key
Privacy - Camera Usage Description
and a usage description.
Or in text format add the key:
<key>NSCameraUsageDescription</key>
<string>Can I use the camera for scanning?</string>
Min target is iOS 9.0
Min SDK version should be 19 or later
minSdkVersion 19
An exmaple with specific symbologies
BarcodeResult result = await FlutterScandit(symbologies: [
Symbology.EAN13_UPCA,
Symbology.CODE128,
// - any other valid sumbologies
], licenseKey: "-- ENTER YOUR SCANDIT LICENSE KEY HERE -") // use your scandit key here
.scanBarcode();
String barcodeData = result.data; // actual barcode string
You should always pass the intended symbologies along with your call. It is also important to check that the symbologies you are selecting align with your Scandit license restrictions.
Since the actual keys will be different per platoform, it is advised to abtract this out using environment variables or global configuration that can be changed per build/environment.