A QR code generation library for Dart and Flutter.
- Supports QR code versions 1 - 40
- Error correction / redundancy
To start, import the dependency in your code:
import 'package:qr/qr.dart';
To build your QR code data you should do so as such:
final qrCode = new QrCode(4, QrErrorCorrectLevel.L);
qrCode.addData("Hello, world in QR form!");
qrCode.make();
Now you can use your _qrCode
instance to render a graphical representation of the QR code. A basic implementation would be as such:
for (int x = 0; x < qrCode.moduleCount; x++) {
for (int y = 0; y < qrCode.moduleCount; y++) {
if (qrCode.isDark(y, x)) {
// render a dark square on the canvas
}
}
}
See the example
directory for further details.
The following libraries use qr.dart to generate QR codes for you out of the box:
QR - Flutter - A Flutter Widget to render QR codes
A working demo can be found here: https://kevmoo.github.io/qr.dart/