TomQRCode

A simple Flutter package to generate QR codes with alphanumeric and numeric support, including finder patterns (corner squares).
This package does not depend on any external QR library, everything is implemented in pure Dart/Flutter.

Features

  • Generate QR codes from alphanumeric or numeric strings
  • Finder patterns included for proper QR code recognition
  • Scalable and printable QR code widgets
  • Pure Dart/Flutter implementation, no external dependencies

Usage

import 'package:tomqrcode/tomqrcode.dart';

Widget build(BuildContext context) {
  return Center(
    child: TomQRCode.generate("HELLO WORLD", size: 300),
  );
}

Libraries

tomqrcode