Currently, only the displayValue
/rawValue
of a barcode is returned.
However, the ML Kit Barcode Scanning SDK also offers the option of returning parsed data such as calendar event details or email details.
Extend the barcode interface with the following properties:
Example:
export interface Barcode {
...
wifi?: BarcodeWifi;
}
export interface BarcodeWifi {
encryptionType: BarcodeWifiEncryptionType;
password: string;
ssid: string;
}
export enum BarcodeWifiEncryptionType {
OPEN = 1,
WPA = 2,
WEP = 3
}
No response
No response
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too