Skip to content

Commit 313e79a

Browse files
update
1 parent 5bb2210 commit 313e79a

File tree

4 files changed

+13
-18
lines changed

4 files changed

+13
-18
lines changed

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dynamsoft Barcode Reader Flutter Samples
22

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.
44

55
## Requirements
66

@@ -83,15 +83,10 @@ Open the **workspace**(!) `ios/Runner.xcworkspace` in Xcode and adjust the *Sign
8383
>- You can request a 30-day trial license via
8484
the [Request a Trial License](https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=guide&package=mobile) link.
8585

86-
## Request Dynamsoft Trial License Key
86+
## License
8787

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.
9089

9190
## Support
9291

9392
https://www.dynamsoft.com/company/contact/
94-
95-
## License
96-
97-
[Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0)

guide-scan-barcodes-foundational-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Foundational Barcode Reader Integration Guide
22

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.
44

55
## Supported Barcode Symbologies
66

@@ -79,7 +79,7 @@ LicenseManager.initLicense('DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9').then((dat
7979
> [!NOTE]
8080
>
8181
>- 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.
8383
8484
### Implement Barcode Scanning from Video Stream
8585

guide-scan-barcodes-ready-to-use-component.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BarcodeScanner Integration Guide
22

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.
44

55
We provide `BarcodeScanner` APIs, which is a ready-to-use component that allows developers to quickly set up a barcode scanning app.
66
With the built-in component, it streamlines the integration of barcode scanning functionality into any application.
@@ -82,7 +82,7 @@ void _launchBarcodeScanner() async{
8282
```
8383

8484
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),
8686
close the interface and return the result. Following is the simplest example of how to use the `_launchBarcodeScanner` function:
8787

8888
```dart
@@ -126,7 +126,7 @@ class _MyHomePageState extends State<MyHomePage> {
126126
>- 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.
127127
128128
### 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.
130130

131131
`BarcodeScanResult` structure:
132132
- 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
137137
- errorString: The error message associated with the error code if an error occurs during barcode scanning process.
138138
- barcodes: An array of `BarcodeResultItem`.
139139

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.
142142
```dart
143143
144-
const config = BarcodeScanConfig(
144+
const config = BarcodeScannerConfig(
145145
146146
///The license key required to initialize the BarcodeScanner.
147147
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).
234234

235235
## License
236236

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.
238238

239239
## Contact
240240

guide-scan-drivers-license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Drivers' License Scanner Integration Guide
22

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/).
44

55
## Supported Drivers' License Types
66

0 commit comments

Comments
 (0)