Flutter plugin for scanning and generating QR codes using the ZXing library, supporting Android, iOS, and desktop platforms
flutterbarcode-generatorbarcode-scannergeneratorqrqrcodeqrcode-generatorqrcode-scannerscannerzxingbarcodezxscanner
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
2 years ago
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_zxing/flutter_zxing.dart';
|
||
|
|
||
|
class ScanResultWidget extends StatelessWidget {
|
||
|
const ScanResultWidget({
|
||
|
Key? key,
|
||
|
this.result,
|
||
|
this.onScanAgain,
|
||
|
}) : super(key: key);
|
||
|
|
||
|
final Code? result;
|
||
|
final Function()? onScanAgain;
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Center(
|
||
|
child: Padding(
|
||
|
padding: const EdgeInsets.all(20.0),
|
||
|
child: Column(
|
||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||
|
children: [
|
||
|
Text(
|
||
|
result?.format?.name ?? '',
|
||
|
style: Theme.of(context).textTheme.headline5,
|
||
|
),
|
||
|
const SizedBox(height: 20),
|
||
|
Text(
|
||
|
result?.text ?? '',
|
||
|
style: Theme.of(context).textTheme.headline6,
|
||
|
),
|
||
|
const SizedBox(height: 20),
|
||
|
Text(
|
||
|
'Inverted: ${result?.isInverted}\t\tMirrored: ${result?.isMirrored}',
|
||
|
style: Theme.of(context).textTheme.bodyText2,
|
||
|
),
|
||
|
const SizedBox(height: 40),
|
||
|
ElevatedButton(
|
||
|
onPressed: onScanAgain,
|
||
|
child: const Text('Scan Again'),
|
||
|
),
|
||
|
],
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|