I want to scan GS1 Databar Barcode which is also known as RSS Expanded barcode in IOS with react-native, I am using react-native-qrcode-scanner https://github.com/moaazsidat/react-native-qrcode-scanner to scan barcodes.
<QRCodeScanner
onRead={this.onSuccess}
showMarker={true}
reactivate={false}
flashMode={RNCamera.Constants.FlashMode.auto}
topContent={
<View>
<Text>
Scan Coupon Barcode
</Text>
<Text>Please fit the barcode within the {'\n'} box on the screen.</Text>
</View>
}
cameraStyle={styles.cameraContainer}
topViewStyle={styles.topcontainer}
bottomViewStyle={styles.zeroContainer}
markerStyle={styles.markerStyle}
containerStyle={styles.container}
/>
It is working fine in android, but failing to pick barcodes in IOS. In IOS QR Code, EAN-8 barcodes are being scanned successfully, but GS1 Databar is not being scanned.