The QR Code Scanner package for Appeto SDK.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Kamil Powałowski cb49651d73 Fixed iOS crash due to force unwrap of nil 6 years ago
.github/workflows Add analysis_options.yaml file for CI and fix hints 6 years ago
.resources Update README.md and CHANGELOG.md 7 years ago
android Bump zxing to 4.0.2 6 years ago
example Bump zxing to 4.0.2 6 years ago
ios Fixed iOS crash due to force unwrap of nil 6 years ago
lib Add analysis_options.yaml file for CI and fix hints 6 years ago
.gitignore .gitgnore all the things 6 years ago
CHANGELOG.md Update README.md and CHANGELOG.md 7 years ago
LICENSE Initial commit 7 years ago
README.md Add GH actions badge to README 6 years ago
analysis_options.yaml Add analysis_options.yaml file for CI and fix hints 6 years ago
azure-pipelines.yml Update azure-pipelines.yml for Azure Pipelines 7 years ago
pubspec.yaml Add analysis_options.yaml file for CI and fix hints 6 years ago

README.md

QR Code Scanner

GH Actions Build Status

A QR code scanner that works on both iOS and Android by natively embedding the platform view within Flutter. The integration with Flutter is seamless, much better than jumping into a native Activity or a ViewController to perform the scan.

Screenshots

Android

iOS

Get Scanned QR Code

When a QR code is recognized, the text identified will be set in ‘qrText’.

class _QRViewExampleState extends State<QRViewExample> {
  final GlobalKey qrKey = GlobalKey(debugLabel: 'QR');
  var qrText = "";
  QRViewController controller;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Column(
        children: <Widget>[
          Expanded(
            flex: 5,
            child: QRView(
              key: qrKey,
              onQRViewCreated: _onQRViewCreated,
            ),
          ),
          Expanded(
            flex: 1,
            child: Center(
              child: Text('Scan result: $qrText'),
            ),
          )
        ],
      ),
    );
  }

  void _onQRViewCreated(QRViewController controller) {
    this.controller = controller;
    controller.scannedDataStream.listen((scanData) {
      setState(() {
        qrText = scanData;
      });
    });
  }

  @override
  void dispose() {
    controller?.dispose();
    super.dispose();
  }
}

iOS Integration

In order to use this plugin, add the following to your Info.plist file:

<key>io.flutter.embedded_views_preview</key>
<true/>

Flip Camera (Back/Front)

The default camera is the back camera.

controller.flipCamera();

Flash (Off/On)

By default, flash is OFF.

controller.toggleFlash();

Resume/Pause

Pause camera stream and scanner.

controller.pause();

Resume camera stream and scanner.

controller.resume();

SDK

Requires at least SDK 24 (Android 7.0).

TODOs

  • iOS Native embedding is written to match what is supported in the framework as of the date of publication of this package. It needs to be improved as the framework support improves.
  • In future, options will be provided for default states.
  • Finally, I welcome PR’s to make it better :), thanks

Credits