We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug showFrame is neither default false nor is false accepted als value - frame is always shown on iOS
To Reproduce Create new App:
import React from 'react'; import { Camera, CameraType } from 'react-native-camera-kit'; function App(): React.JSX.Element { return ( <Camera /> ); } export default App;
and run it (dont forget to set Camera usage Description in Info.plist)
Expected behavior Frame should not be shown
Version information v14.1.0 on iOS 18.2
The text was updated successfully, but these errors were encountered:
I'm experiencing this issue too
Sorry, something went wrong.
I think it has something to do with changes for new arch coming from @WoLewicki as of now i am going with 14.0 - but you have to disable new arch.
I added ENV['RCT_NEW_ARCH_ENABLED'] = "0" to the first line of ios/Podfile
ENV['RCT_NEW_ARCH_ENABLED'] = "0"
ios/Podfile
No branches or pull requests
Describe the bug
showFrame is neither default false nor is false accepted als value - frame is always shown on iOS
To Reproduce
Create new App:
and run it
(dont forget to set Camera usage Description in Info.plist)
Expected behavior
Frame should not be shown
Version information
v14.1.0 on iOS 18.2
The text was updated successfully, but these errors were encountered: