The QR Code Scanner package for Appeto SDK.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 
juliuscanute a223a7d5cd
Merge pull request #26 from LuisThein/feature/pauseResumeCamera
7 yıl önce
.resources update README.md 7 yıl önce
android Added methods for pausing/resuming camera 7 yıl önce
example Added methods for pausing/resuming camera 7 yıl önce
ios Added methods for pausing/resuming camera 7 yıl önce
lib Added methods for pausing/resuming camera 7 yıl önce
.packages update README.md 7 yıl önce
CHANGELOG.md Perform Dry Run before publish -- Fixes build break (#24) 7 yıl önce
LICENSE Initial commit 7 yıl önce
README.md add build status badge 7 yıl önce
azure-pipelines.yml Update azure-pipelines.yml for Azure Pipelines 7 yıl önce
pubspec.yaml Perform Dry Run before publish -- Fixes build break (#24) 7 yıl önce

README.md

QR Code Scanner

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>[
                    QRView(
                      key: qrKey,
                      onQRViewCreated: _onQRViewCreated,
                    ),          
                  ],
                ),
          );
  }

  void _onQRViewCreated(QRViewController controller) {
    final channel = controller.channel;
    controller.init(qrKey);
    this.controller = controller;
    channel.setMethodCallHandler((MethodCall call) async {
      switch (call.method) {
        case "onRecognizeQR":
          dynamic arguments = call.arguments;
          setState(() {
            qrText = arguments.toString();
          });
      }
    });
  }
  
}

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.flipFlash();

TODO’S:

  • 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