1.1.0 • Published 1 year ago

react-native-gzdsx-barcodeview v1.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

react-native-gzdsx-barcodeview

Getting started

$ npm install react-native-gzdsx-barcodeview --save or $ yarn add react-native-gzdsx-barcodeview

Mostly automatic installation

$ npx pod-install

Usage

import BarcodeView from 'react-native-barcode-view';
const App = () => {
    return (
        <BarcodeView
            onRead={e => {
                console.log(e.nativeEvent);
            }}
        />
    )
}
// TODO: What to do with the module?
BarcodeView;