tomqrcode 0.0.1
tomqrcode: ^0.0.1 copied to clipboard
A Flutter package to generate QR codes with alphanumeric support and finder patterns.
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),
);
}