一个Flutter插件,用于扫描条形码和二维码。
Go to file
BC Ko 8b010fa625
Update .gitignore to new `dart_tool` pub cache
dart-lang/sdk#32030
2018-05-24 03:05:26 -07:00
android update support:design to 27.1.1, compileSdkVersion to 27 2018-04-17 12:12:37 -07:00
example remove incorrect package 2018-01-19 04:25:23 -08:00
ios changed delegate method name to 'didFailWithErrorCode' 2018-01-10 16:25:40 +01:00
lib main, example: added CameraAccessDenied constant 2018-01-10 14:55:58 +01:00
.gitignore Update .gitignore to new `dart_tool` pub cache 2018-05-24 03:05:26 -07:00
CHANGELOG.md update version, changelog to prepare for release 2018-04-17 12:17:33 -07:00
LICENSE Add MIT license 2018-01-19 04:07:31 -08:00
README.md Wording change to incorporate the permission handling 2018-01-12 11:57:19 +01:00
barcode_scan.iml Initial commit 2017-10-29 10:05:11 -07:00
barcode_scan_android.iml Initial commit 2017-10-29 10:05:11 -07:00
pubspec.yaml update version, changelog to prepare for release 2018-04-17 12:17:33 -07:00

README.md

Barcode Scanner

A flutter plugin for scanning 2D barcodes and QR codes.

This provides a simple wrapper for two commonly used iOS and Android libraries:

iOS: https://github.com/mikebuss/MTBBarcodeScanner

Android: https://github.com/dm77/barcodescanner

Features

  • Scan 2D barcodes
  • Scan QR codes
  • Control the flash while scanning
  • Permission handling
  • Support multiple barcode libraries

Getting Started

Android

For Android, you must do the following before you can use the plugin:

  • Add the camera permission to your AndroidManifest.xml

    <uses-permission android:name="android.permission.CAMERA" />

  • Add the Barcode activity to your AndroidManifest.xml

    <activity android:name="com.apptreesoftware.barcodescan.BarcodeScannerActivity"/>

iOS

To use on iOS, you must add the the camera usage description to your Info.plist

<key>NSCameraUsageDescription</key>
<string>Camera permission is required for barcode scanning.</string>