You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I'm using this library for qr scan purpose but it is not working as expectedly
To Reproduce
Steps to reproduce the behavior:
use camera component code which is given in documentation
open the app in ios emulator. All the screen are working fine but when I'm navigating to the component which includes the Camera the app is getting closed.
Expected behavior
It should open the camera as given in the docs
Screenshots
If the issue is a visual glitch or UI issue please provide screen shots.
Screen.Recording.2023-10-12.at.1.07.51.PM.mov
Desktop (please complete the following information):
OS: IOS
Browser [e.g. chrome, safari]
Version 13.2
Smartphone (please complete the following information):
Device: 14 pro max
OS: IOS 16.4
Browser [e.g. stock browser, safari]
Version [e.g. 22]
Additional context
This is my code of Qrscanner component :
import React, { useEffect, useRef } from 'react';
import { View, Alert,Text } from 'react-native';
import { Camera, CameraType } from 'react-native-camera-kit';
Describe the bug
I'm using this library for qr scan purpose but it is not working as expectedly
To Reproduce
Steps to reproduce the behavior:
Expected behavior
It should open the camera as given in the docs
Screenshots
If the issue is a visual glitch or UI issue please provide screen shots.
Screen.Recording.2023-10-12.at.1.07.51.PM.mov
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context
This is my code of Qrscanner component :
import React, { useEffect, useRef } from 'react';
import { View, Alert,Text } from 'react-native';
import { Camera, CameraType } from 'react-native-camera-kit';
const App = () => {
const cameraRef = useRef(null);
const onBarcodeScan = (event:any) => {
Alert.alert('QR code found', event.nativeEvent.codeStringValue);
};
return (
<View style={{flex: 1}}>
Working
);
};
export default App;
For permissions I did updated the info.pilst file as shown in github page
The text was updated successfully, but these errors were encountered: