flutter_qr_reader 1.0.0+1  flutter_qr_reader: ^1.0.0+1 copied to clipboard
flutter_qr_reader: ^1.0.0+1 copied to clipboard
QR code (scan QRCode and picture) recognition (AndroidView/UiKitView)
flutter_qr_reader #
QR code (scan code / picture) recognition (AndroidView/UiKitView)
DEMO #


Getting Started #
import 'package:flutter_qr_reader/flutter_qr_reader.dart';
// 识别图片
final String data = await FlutterQrReader.imgScan(File);
// 嵌入视图
QrReaderView(
  width: 320,
  height: 350,
  callback: (container) {},
)
// 打开手电筒
..setFlashlight
// 开始扫码
..startCamera
// 结束扫码
..stopCamera
Built-in UI #
Widget build(BuildContext context) {
    return new Scaffold(
      body: QrcodeReaderView(onScan: onScan),
    );
}
Future onScan(String data) async {
    await showCupertinoDialog(
      context: context,
      builder: (context) {
        return CupertinoAlertDialog(
          title: Text("扫码结果"),
          content: Text(data),
          actions: <Widget>[
            CupertinoDialogAction(
              child: Text("确认"),
              onPressed: () => Navigator.pop(context),
            )
          ],
        );
      },
    );
}