Home > OS >  What is the best alternative of react-native-camera as it is now deprecated?
What is the best alternative of react-native-camera as it is now deprecated?

Time:07-11

I am working on a project that requires a custom camera view in react-native. And the best option I found is react-native-camera but lack of maintenance, it is deprecated now. So I searched a lot of libraries in react-native but did not found.

CodePudding user response:

You can go with expo-camera

works on both ios and android ✌️

CodePudding user response:

You can use react-native-vision-camera.

npm link > https://www.npmjs.com/package/react-native-vision-camera

CodePudding user response:

You can use react-native-vision-camera package

npm link : https://www.npmjs.com/package/react-native-vision-camera

github : https://github.com/mrousavy/react-native-vision-camera

docs: https://mrousavy.com/react-native-vision-camera/docs/guides/

installation:

npm i react-native-vision-camera
npx pod-install
  • Related