一个Flutter插件,用于扫描条形码和二维码。
Go to file
Matthew Smith 0e4339160f Initial commit 2017-10-29 10:05:11 -07:00
android Initial commit 2017-10-29 10:05:11 -07:00
example Initial commit 2017-10-29 10:05:11 -07:00
ios Initial commit 2017-10-29 10:05:11 -07:00
lib Initial commit 2017-10-29 10:05:11 -07:00
.gitignore Initial commit 2017-10-29 10:05:11 -07:00
CHANGELOG.md Initial commit 2017-10-29 10:05:11 -07:00
LICENSE Initial commit 2017-10-29 10:05:11 -07:00
README.md Initial commit 2017-10-29 10:05:11 -07: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 Initial commit 2017-10-29 10:05:11 -07:00

README.md

Barcode Scanner

A flutter plugin for scanning 2D barcodes and QR codes

Features

  • Scan 2D barcodes
  • Scan QR codes
  • Control the flash while scanning
  • Customize the permission request text

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>