I use this component for scan qr , but its height width are not change, its style are not working , how can i define its width and height specific like 50,50
<CameraKitCameraScreen
style={{
width:'100%',height:'100%',
backgroundColor: 'white'
}}
cameraOptions={{
flashMode: 'auto',
focusMode: 'on',
zoomMode: 'on',
ratioOverlay:'1:1',
ratioOverlayColor: '#00000077'
}}
showFrame={true}
//Show/hide scan frame
scanBarcode={true}
offsetForScannerFrame = {50}
heightForScannerFrame = {50}
hideControls={true}
//Can restrict for the QR Code only
laserColor={'blue'}
//Color can be of your choice
frameColor={'yellow'}
//If frame is visible then frame color
colorForScannerFrame={'green'}
//Scanner Frame color
onReadCode={event =>
this.onBarcodeScan(event.nativeEvent.codeStringValue)
}
/>
you're taking
CameraKitCameraScreen
, instead takeCamera
from that library like this,import { CameraType, Camera } from 'react-native-camera-kit'