一个Flutter插件,用于扫描条形码和二维码。
Go to file
Benjamin Sauer 2156fe33fe replaced iOs popup by throwing a flutter error 2018-01-08 14:42:47 +01:00
android Added error handling for declined permission requests. 2018-01-05 17:21:25 +01:00
example Added error handling for declined permission requests. 2018-01-05 17:21:25 +01:00
ios replaced iOs popup by throwing a flutter error 2018-01-08 14:42:47 +01:00
lib reverted name of barcode_scanner.dart to barcode_scan.dart 2017-10-29 16:53:49 -07:00
.gitignore Initial commit 2017-10-29 10:05:11 -07:00
CHANGELOG.md Updated pubspec and changelog for release 2017-11-07 18:43:42 -08:00
LICENSE Initial commit 2017-10-29 10:05:11 -07:00
README.md Fix markup in readme 2017-11-11 23:38:21 +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 Updated pubspec and changelog for release 2017-11-07 18:43:42 -08: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
  • Customize the permission request text
  • 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>