소스 검색

Merge pull request #214 from Dhi13man/master

Example Code typo fix.
flutter-beta
Julian Steenbakker 5 년 전
committed by GitHub
부모
커밋
e2f98423ed
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      README.md

+ 2
- 2
README.md 파일 보기

@@ -59,7 +59,7 @@ iOS

## Get Scanned QR Code

When a QR code is recognized, the text identified will be set in 'qrText'.
When a QR code is recognized, the text identified will be set in 'result' of type `Barcode`, which contains the output text as property 'code' of type `String` and scanned code type as property 'format' which is an enum `BarcodeFormat`, defined in the library.

```dart
class _QRViewExampleState extends State<QRViewExample> {
@@ -119,7 +119,7 @@ class _QRViewExampleState extends State<QRViewExample> {
this.controller = controller;
controller.scannedDataStream.listen((scanData) {
setState(() {
qrText = scanData;
result = scanData;
});
});
}


불러오는 중...
취소
저장