flutter_qr_reader 0.0.3 flutter_qr_reader: ^0.0.3 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';
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),
)
],
);
},
);
}