flutter_barcode_scanner 0.0.5 copy "flutter_barcode_scanner: ^0.0.5" to clipboard
flutter_barcode_scanner: ^0.0.5 copied to clipboard

outdated

A plugin for barcode scanning support on Android and iOS. Supports barcodes, QR codes, etc.

flutter_barcode_scanner #

A plugin for Flutter apps that adds barcode scanning support on both Android and iOS.

pub package

Demo gif

Try example #

Just clone the repository, open the project in Android Studio/ VS Code, open pubspec.yaml and click on Packages get. Connect device and hit run. To run on iPhone you need to run from Xcode first time and just make pod install in example/ios.

Getting Started #

Follow the steps for Android and iOS

Android #


Please make sure to add compileSdkVersion 28 and targetSdkVersion 28 in build.gradle(app) file, apart from this you don't need to do anything.

iOS #

Deployment target : 10 Swift Version : 4.2

As iOS code is written in Swift so you need to convert your existing iOS codebase to swift (or if you are creating a new project from Android Studio make sure to check Include Swift support for iOS code.) To do that you can create a new project with same name in different location and then just copy iOS folder to existing.(if any changes made before make sure to add these in iOS(swift)). After making codebase in swift make sure that the Swift version is 4.2 as the code for iOS is written in Swift 4.2. To use on iOS, open the Xcode and add camera usage description in Info.plist.

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

How to use ? #

After making the changes in Android ans iOS add flutter_barcode_scanner to pubspec.yaml

dependencies:
  ...
  flutter_barcode_scanner: ^0.0.5
  1. You need to import the package first.

    import 'package:flutter_barcode_scanner/flutter_barcode_scanner.dart';

  2. Then use the scanBarcode method to access barcode scanning.

    String barcodeScanRes = await FlutterBarcodeScanner.scanBarcode(COLOR_CODE);

Here in scanBarcode(COLOR_CODE) you can pass hex-color which is the color of line in barcode overlay.

Credits : #

Special thanks to @Harshal Jadhav for helping me for iOS part.

About me .. #

E-mail : [email protected]

Amol Gangadhare

1272
likes
0
pub points
99%
popularity

Publisher

unverified uploader

A plugin for barcode scanning support on Android and iOS. Supports barcodes, QR codes, etc.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_barcode_scanner