You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-8Lines changed: 3 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Dynamsoft Barcode Reader Flutter Samples
2
2
3
-
This repository contains multiple samples that show you how use the Dynamsoft Capture Vision Flutter SDK.
3
+
This repository contains multiple samples that show you how use the Dynamsoft Barcode Reader Flutter SDK.
4
4
5
5
## Requirements
6
6
@@ -83,15 +83,10 @@ Open the **workspace**(!) `ios/Runner.xcworkspace` in Xcode and adjust the *Sign
83
83
>- You can request a 30-day trial license via
84
84
the [Request a Trial License](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=guide&package=mobile) link.
85
85
86
-
## Request Dynamsoft Trial License Key
86
+
## License
87
87
88
-
- You can request a 30-day trial license via
89
-
the [Request a Trial License](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=mobile) link.
88
+
- You can request a 30-day trial license via the [Request a Trial License](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=mobile) link.
Copy file name to clipboardExpand all lines: guide-scan-barcodes-foundational-api.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Foundational Barcode Reader Integration Guide
2
2
3
-
In this guide, we will guide you to develop a barcode scanning app with the [`Foundational APIs`](https://dynamsoft.github.io/barcode-reader-react-native-samples/APIReferences/dynamsoft-capture-vision-react-native) of Dynamsoft Barcode Reader SDK.
3
+
In this guide, we will guide you to develop a barcode scanning app with the [`Foundational APIs`](https://pub.dev/documentation/dynamsoft_capture_vision_flutter/latest/) of Dynamsoft Barcode Reader SDK.
>- The license string here grants a time-limited free trial which requires network connection to work.
82
-
>- You can request a 30-day trial license via the [Request a Trial License](https://www.dynamsoft.com/customer/license/trialLicense?product=dcv&utm_source=guide&package=mobile) link.
82
+
>- You can request a 30-day trial license via the [Request a Trial License](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=guide&package=mobile) link.
Copy file name to clipboardExpand all lines: guide-scan-barcodes-ready-to-use-component.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# BarcodeScanner Integration Guide
2
2
3
-
In this guide, we will guide you to develop a barcode scanning app with the [`BarcodeScanner`](https://dynamsoft.github.io/barcode-reader-flutter-samples/APIReferences/dynamsoft-barcode-reader-bundle-flutter/dynamsoft-barcode-reader-bundle-flutter/) component.
3
+
In this guide, we will guide you to develop a barcode scanning app with the [`BarcodeScanner`](https://pub.dev/documentation/dynamsoft_barcode_reader_bundle_flutter/latest/) component.
4
4
5
5
We provide `BarcodeScanner` APIs, which is a ready-to-use component that allows developers to quickly set up a barcode scanning app.
6
6
With the built-in component, it streamlines the integration of barcode scanning functionality into any application.
You can call the above function anywhere (e.g., when the app starts, on a button click, etc.) to achieve the effect:
85
-
open a barcode scanning interface, and after scanning is complete (with `BarcodeScanConfig.scanningMode` determining whether a single barcode or multiple barcodes are captured),
85
+
open a barcode scanning interface, and after scanning is complete (with `BarcodeScannerConfig.scanningMode` determining whether a single barcode or multiple barcodes are captured),
86
86
close the interface and return the result. Following is the simplest example of how to use the `_launchBarcodeScanner` function:
87
87
88
88
```dart
@@ -126,7 +126,7 @@ class _MyHomePageState extends State<MyHomePage> {
126
126
>- You can request a 30-day trial license via the [Request a Trial License](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=guide&package=mobile) link.
127
127
128
128
### Barcode Scan Result
129
-
Also see it in the [BarcodeScanResult](https://dynamsoft.github.io/barcode-reader-flutter-samples/APIReferences/dynamsoft-barcode-reader-bundle-flutter/dynamsoft-barcode-reader-bundle-flutter/BarcodeScanResult-class.html) section of API References.
129
+
Also see it in the [BarcodeScanResult](https://pub.dev/documentation/dynamsoft_barcode_reader_bundle_flutter/latest/dynamsoft_barcode_reader_bundle_flutter/BarcodeScanResult-class.html) section of API References.
130
130
131
131
`BarcodeScanResult` structure:
132
132
- resultStatus: The status of the barcode result, of type `EnumResultStatus`.
@@ -137,11 +137,11 @@ Also see it in the [BarcodeScanResult](https://dynamsoft.github.io/barcode-reade
137
137
- errorString: The error message associated with the error code if an error occurs during barcode scanning process.
138
138
- barcodes: An array of `BarcodeResultItem`.
139
139
140
-
### (Optional) Change the BarcodeScanConfig to meet your needs
141
-
Also see it in the [BarcodeScanConfig](https://dynamsoft.github.io/barcode-reader-flutter-samples/APIReferences/dynamsoft-barcode-reader-bundle-flutter/dynamsoft-barcode-reader-bundle-flutter/BarcodeScannerConfig-class.html) section of API References.
140
+
### (Optional) Change the BarcodeScannerConfig to meet your needs
141
+
Also see it in the [BarcodeScannerConfig](https://pub.dev/documentation/dynamsoft_barcode_reader_bundle_flutter/latest/dynamsoft_barcode_reader_bundle_flutter/BarcodeScannerConfig-class.html) section of API References.
142
142
```dart
143
143
144
-
const config = BarcodeScanConfig(
144
+
const config = BarcodeScannerConfig(
145
145
146
146
///The license key required to initialize the BarcodeScanner.
147
147
license: "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9", //The license string here grants a time-limited free trial which requires network connection to work.
@@ -234,7 +234,7 @@ The full sample code is available [here](./ScanBarcodes_ReadyToUseComponent).
234
234
235
235
## License
236
236
237
-
- You can request a 30-day trial license via the [Request a Trial License](https://www.dynamsoft.com/customer/license/trialLicense?product=mrz&utm_source=github&package=mobile) link.
237
+
- You can request a 30-day trial license via the [Request a Trial License](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=mobile) link.
Copy file name to clipboardExpand all lines: guide-scan-drivers-license.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Drivers' License Scanner Integration Guide
2
2
3
-
In this guide, we'll walk you through developing a React Native application that can scan drivers' licenses using the [`Foundational APIs`](https://dynamsoft.github.io/barcode-reader-react-native-samples/APIReferences/dynamsoft-capture-vision-react-native).
3
+
In this guide, we'll walk you through developing a Flutter application that can scan drivers' licenses using the [`Foundational APIs`](https://pub.dev/documentation/dynamsoft_capture_vision_flutter/latest/).
0 commit comments