Skip to content

Latest commit

 

History

History

qrscan_flutter_web

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

qrscan_flutter_web

Web support based on Cozmo jsQR.

Online demo

Setup

In pubspec.yaml

dependencies:
  tekartik_qrscan_flutter_web:
    git:
      url: https://github.com/tekartik/app_camera.dart
      path: qrscan_flutter_web
      ref: dart3a
    version: '>=0.1.0'
...

flutter:
  # Export jsQR
  assets:
    - packages/tekartik_js_qr/js_qr.js

In your index.html file (could be at the end of the body section, before main.dart.js):

<script src="assets/packages/tekartik_js_qr/js/js_qr.js" type="application/javascript"></script>

Scanning a QR code

var qrCodeData = await scanQrCode(context, title: 'Scan QR code');