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
- Host: GitHub
- URL: https://github.com/logisticinfotech/react-native-number-plate-scanner
- Owner: logisticinfotech
- License: mit
- Created: 2020-03-19T12:13:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-23T06:07:18.000Z (over 6 years ago)
- Last Synced: 2025-09-20T10:47:56.192Z (10 months ago)
- Language: Java
- Size: 64.5 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @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);
});
};
```