An open API service indexing awesome lists of open source software.

https://github.com/logisticinfotech/react-native-number-plate-scanner

react-native-number-plate-scanner
https://github.com/logisticinfotech/react-native-number-plate-scanner

Last synced: 10 months ago
JSON representation

react-native-number-plate-scanner

Awesome Lists containing this project

README

          


npm version


# @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

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

// TODO: What to do with the module?

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