How to access a phone camera using React Native iOS?

I played with React Native, and I'm confused by what I do to access the camera.

What is the standard way to access the camera on your phone using React Native under iOS?

+8
reactjs react-native
source share
2 answers

React Native does not currently have access to the camera. If you want to help, React Native has a plug-in system that allows you to implement camera support (or any API that is not provided by default).

https://github.com/facebook/react-native#extensibility http://facebook.imtqy.com/react-native/docs/nativemodulesios.html#content

+9
source share

lwansbrough on github packaged a camera bridge to respond to native.

https://github.com/lwansbrough/react-native-camera

However, as indicated in the document,

This module is at an early stage of development.

+17
source share

All Articles