0.1.3-f-d • Published 3 years ago

react-native-scanner-zebra-v2 v0.1.3-f-d

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

react-native-scanner-zebra

*Note: This package is still under beta version**

Getting started

$ npm install react-native-scanner-zebra --save

Mostly automatic installation

$ react-native link react-native-scanner-zebra

Additions steps for IOS Application

  • Configure the Xcode project to support one or more external accessory communication protocols through the UISupportedExternalAccessoryProtocols key in your application Info.plist file or via the Info tab of your project settings.

    Communication ProtocolZebra Scanner
    com.motorolasolutions.CS4070_ssiCS4070
    com.zebra.scanner.SSIRFD8500
    com.motorolasolutions.scannerRFD8500

Methods:

  • setEnabled(isEnabled): Enable or disable active scanners
  • getActiveScanners(callback): Returns the list of active scanners in callback function

Usage

import useZebraScanner from 'react-native-scanner-zebra';

// Called when barcode is scanned
const onScan = useCallback((barcode, scannerId) => {
	// Handle the barcode
}, []);

// Called when scanner event occurred
const onEvent = useCallback((event, scannerId) => {
	// Handle the event
}, []);

const { setEnabled, getActiveScanners } = useZebraScanner(onScan, onEvent);