Barcode Scanning

@nativescript/mlkit-barcode-scanning

Installation

npm install @nativescript/mlkit-barcode-scanning

Usage

import { DetectionType, DetectionEvent } from '@nativescript/mlkit-core';
import { BarcodeResult } from '@nativescript/mlkit-barcode-scanning';
onDetection(event: DetectionEvent){
    if(event.type === DetectionType.Barcode){
        const barcode: BarcodeResult[] = event.data;
    }
}