Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 446 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 446 Bytes

flutter_qr_scan

QR code (scan code / picture) recognition, forked from hetian9288/flutter_qr_reader.

We added Bytes/RawData reading from QR code, so onScan() callback function have 2 params now:

Future onScan(String data, String rawData) async {
 print(data);
 print(rawData);
}

Docs can be found in hetian9288/flutter_qr_reader.