Skip to content

kevmoo/qr.dart

Folders and files

NameName
Last commit message
Last commit date
Mar 2, 2025
Oct 4, 2024
Mar 18, 2024
Oct 24, 2022
Mar 3, 2018
Oct 4, 2024
Mar 23, 2014
Jan 17, 2023
Oct 28, 2024
Nov 24, 2024
Nov 11, 2024
Nov 24, 2024

Repository files navigation

A QR code generation library for Dart and Flutter.

Pub Package package publisher CI

Features

  • Supports QR code versions 1 - 40
  • Error correction / redundancy

Getting started

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 = QrCode(4, QrErrorCorrectLevel.L)
  ..addData('Hello, world in QR form!');
final qrImage = QrImage(qrCode);

Now you can use your qrImage instance to render a graphical representation of the QR code. A basic implementation would be as such:

for (var x = 0; x < qrImage.moduleCount; x++) {
  for (var y = 0; y < qrImage.moduleCount; y++) {
    if (qrImage.isDark(y, x)) {
      // render a dark square on the canvas
    }
  }
}

See the example directory for further details.

Pre-made UI libraries

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

barcode - A package that supports many types of scannable codes, include QR.

Demo

A working demo can be found here: kevmoo.github.io/qr.dart