https://github.com/ponnamkarthik/qrcodereaderflutter
Flutter Plugin for QRCode Reader
https://github.com/ponnamkarthik/qrcodereaderflutter
Last synced: 3 months ago
JSON representation
Flutter Plugin for QRCode Reader
- Host: GitHub
- URL: https://github.com/ponnamkarthik/qrcodereaderflutter
- Owner: ponnamkarthik
- License: mit
- Created: 2018-04-18T12:14:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-24T11:05:50.000Z (about 7 years ago)
- Last Synced: 2025-04-09T20:05:22.580Z (6 months ago)
- Language: Objective-C
- Size: 163 KB
- Stars: 26
- Watchers: 3
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# QRCode Reader plugin for Flutter
> This is a copy of [qrcode_reader](https://pub.dartlang.org/packages/qrcode_reader) with build fix
> The original repo is archived so publishing as a new plugin
Flutter plugin for reading QR Codes with the camera.
### Import
```yaml
dependencies:
qr_reader: ^0.1.3
```### Example
``` dart
import 'package:qr_reader/qr_reader.dart';
`````` dart
Future futureString = new QRCodeReader()
.setAutoFocusIntervalInMs(200) // default 5000
.setForceAutoFocus(true) // default false
.setTorchEnabled(true) // default false
.setHandlePermissions(true) // default true
.setExecuteAfterPermissionGranted(true) // default true
.scan();
```These options are Android only, this is the simplest way of plugin usage:
``` dart
Future futureString = new QRCodeReader().scan();
```