Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/siridx/qrcode

A flutter plugin for scanning QR codes. Use AVCaptureSession in iOS and zxing in Android.
https://github.com/siridx/qrcode

android avcapturesession dart flutter-package flutter-plugin ios qr qr-code qrcode qrcode-scanner zxing

Last synced: 2 days ago
JSON representation

A flutter plugin for scanning QR codes. Use AVCaptureSession in iOS and zxing in Android.

Awesome Lists containing this project

README

        

# qrcode
A flutter plugin for scanning QR codes. Use AVCaptureSession in iOS and zxing in Android.

## Usage

### Use this package as a library

#### Add dependency

Add this to your package's pubspec.yaml file:

```dart
dependencies:
qrcode: ^1.0.5
```

#### Install it

You can install packages from the command line:

with Flutter:

```
$ flutter pub get
```

#### Import it

Now in your Dart code, you can use:

```dart
import 'package:qrcode/qrcode.dart';
```

### Basic

```dart
class _MyAppState extends State {
QRCaptureController _captureController = QRCaptureController();

bool _isTorchOn = false;

@override
void initState() {
super.initState();

_captureController.onCapture((data) {
print('onCapture----$data');
});
}

@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Stack(
alignment: Alignment.center,
children: [
QRCaptureView(controller: _captureController),
Align(
alignment: Alignment.bottomCenter,
child: _buildToolBar(),
)
],
),
),
);
}

Widget _buildToolBar() {
return Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
children: [
FlatButton(
onPressed: () {
_captureController.pause();
},
child: Text('pause'),
),
FlatButton(
onPressed: () {
if (_isTorchOn) {
_captureController.torchMode = CaptureTorchMode.off;
} else {
_captureController.torchMode = CaptureTorchMode.on;
}
_isTorchOn = !_isTorchOn;
},
child: Text('torch'),
),
FlatButton(
onPressed: () {
_captureController.resume();
},
child: Text('resume'),
),
],
);
}
}
```

## Integration

### iOS
To use on iOS, you must add the following to your Info.plist

```
NSCameraUsageDescription
Camera permission is required for qrcode scanning.
io.flutter.embedded_views_preview

```