1.0.3 • Published 5 years ago

@logisticinfotech/react-native-number-plate-scanner v1.0.3

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

@logisticinfotech/react-native-number-plate-scanner

Getting started

$ npm install @logisticinfotech/react-native-number-plate-scanner --save

Mostly automatic installation

$ react-native link @logisticinfotech/react-native-number-plate-scanner

Note

Working only with android.

Usage

import { NumberPlateScanner } from "@logisticinfotech/react-native-number-plate-scanner";

// TODO: What to do with the module?

onPressScan = () => {
  NumberPlateScanner().then(result => {
    console.log(result);
  });
};