We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5f135e commit 9cc6ae4Copy full SHA for 9cc6ae4
1 file changed
README.md
@@ -96,11 +96,7 @@ To have the best possible focus on the code we scan it is needed to choose the m
96
Example for scanning 20x20mm QR codes.
97
98
```swift
99
-CodeScannerView(
100
- codeTypes: [.qr],
101
- simulatedData: "Paul Hudson",
102
- videoCaptureDevice: AVCaptureDevice.zoomedCameraForQRCode(withMinimumCodeSize: 20)
103
-) { response in
+CodeScannerView(codeTypes: [.qr], videoCaptureDevice: AVCaptureDevice.zoomedCameraForQRCode(withMinimumCodeSize: 20)) { response in
104
switch response {
105
case .success(let result):
106
print("Found code: \(result.string)")
0 commit comments