Browse Source

added micro qr code support

pull/76/head
Khoren Markosyan 2 years ago
parent
commit
aaeba0d024
  1. 13
      example/lib/main.dart
  2. 17
      lib/src/models/format.dart

13
example/lib/main.dart

@ -69,6 +69,7 @@ class _DemoPageState extends State<DemoPage> {
else if (result != null) else if (result != null)
ScanResultWidget( ScanResultWidget(
result: result?.text, result: result?.text,
format: result?.format?.name,
onScanAgain: () => setState(() => result = null), onScanAgain: () => setState(() => result = null),
) )
else if (result != null) else if (result != null)
@ -159,29 +160,39 @@ class ScanResultWidget extends StatelessWidget {
const ScanResultWidget({ const ScanResultWidget({
Key? key, Key? key,
this.result, this.result,
this.format,
this.onScanAgain, this.onScanAgain,
}) : super(key: key); }) : super(key: key);
final String? result; final String? result;
final String? format;
final Function()? onScanAgain; final Function()? onScanAgain;
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Center( return Center(
child: Padding(
padding: const EdgeInsets.all(20.0),
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: [ children: [
Text(
format ?? '',
style: Theme.of(context).textTheme.headline5,
),
const SizedBox(height: 20),
Text( Text(
result ?? '', result ?? '',
style: Theme.of(context).textTheme.headline6, style: Theme.of(context).textTheme.headline6,
), ),
const SizedBox(height: 20), const SizedBox(height: 30),
ElevatedButton( ElevatedButton(
onPressed: onScanAgain, onPressed: onScanAgain,
child: const Text('Scan Again'), child: const Text('Scan Again'),
), ),
], ],
), ),
),
); );
} }
} }

17
lib/src/models/format.dart

@ -19,8 +19,9 @@ abstract class Format {
static const int qrCode = 1 << 13; // QR Code (2D) static const int qrCode = 1 << 13; // QR Code (2D)
static const int upca = 1 << 14; // UPC-A (1D) static const int upca = 1 << 14; // UPC-A (1D)
static const int upce = 1 << 15; // UPC-E (1D) static const int upce = 1 << 15; // UPC-E (1D)
static const int microQRCode = 1 << 16; // Micro QR Code
static const int oneDCodes = codabar | static const int linearCodes = codabar |
code39 | code39 |
code93 | code93 |
code128 | code128 |
@ -31,8 +32,9 @@ abstract class Format {
dataBarExpanded | dataBarExpanded |
upca | upca |
upce; upce;
static const int twoDCodes = aztec | dataMatrix | maxiCode | pdf417 | qrCode; static const int matrixCodes =
static const int any = oneDCodes | twoDCodes; aztec | dataMatrix | maxiCode | pdf417 | qrCode | microQRCode;
static const int any = linearCodes | matrixCodes;
} }
extension CodeFormat on int { extension CodeFormat on int {
@ -50,6 +52,7 @@ extension CodeFormat on int {
static final List<int> supportedEncodeFormats = <int>[ static final List<int> supportedEncodeFormats = <int>[
Format.qrCode, Format.qrCode,
// Format.microQRCode,
Format.dataMatrix, Format.dataMatrix,
Format.aztec, Format.aztec,
// Format.pdf417, // Format.pdf417,
@ -86,8 +89,9 @@ final Map<int, String> barcodeNames = <int, String>{
Format.qrCode: 'QR Code', Format.qrCode: 'QR Code',
Format.upca: 'UPCA', Format.upca: 'UPCA',
Format.upce: 'UPCE', Format.upce: 'UPCE',
Format.oneDCodes: 'OneD', Format.microQRCode: 'Micro QR Code',
Format.twoDCodes: 'TwoD', Format.linearCodes: 'OneD',
Format.matrixCodes: 'TwoD',
Format.any: 'Any', Format.any: 'Any',
}; };
@ -108,6 +112,7 @@ final Map<int, double> barcodeRatios = <int, double>{
Format.qrCode: 3.0 / 3.0, // recommended ratio: 3:3 (square) Format.qrCode: 3.0 / 3.0, // recommended ratio: 3:3 (square)
Format.upca: 3.0 / 1.0, // recommended ratio: 3:1 Format.upca: 3.0 / 1.0, // recommended ratio: 3:1
Format.upce: 1.0 / 1.0, // recommended ratio: 1:1 (square) Format.upce: 1.0 / 1.0, // recommended ratio: 1:1 (square)
Format.microQRCode: 3.0 / 3.0, // recommended ratio: 3:3 (square)
}; };
final Map<int, String> barcodeDemoText = <int, String>{ final Map<int, String> barcodeDemoText = <int, String>{
@ -127,6 +132,7 @@ final Map<int, String> barcodeDemoText = <int, String>{
Format.qrCode: 'This is a QR Code', Format.qrCode: 'This is a QR Code',
Format.upca: '72527273070', Format.upca: '72527273070',
Format.upce: '0123456', Format.upce: '0123456',
Format.microQRCode: 'This is a Micro QR Code',
}; };
final Map<int, int> barcodeMaxTextLengths = <int, int>{ final Map<int, int> barcodeMaxTextLengths = <int, int>{
@ -146,4 +152,5 @@ final Map<int, int> barcodeMaxTextLengths = <int, int>{
Format.qrCode: 4296, Format.qrCode: 4296,
Format.upca: 12, Format.upca: 12,
Format.upce: 8, Format.upce: 8,
Format.microQRCode: 4296,
}; };

Loading…
Cancel
Save