Reputation: 1109
I would like to build an app in React Native were I can access the Camera and CameraRoll.
I have found that for iOS there is something implemented: https://facebook.github.io/react-native/docs/cameraroll.html but its not supported on android. Also access to the camera is supported on iOS thru a third party library: https://github.com/lwansbrough/react-native-camera but the same thing, android is not supported.
With so many basic things lacking how can someone build an native app using react native?
Upvotes: 2
Views: 6314
Reputation: 5643
I am using https://github.com/marcshilling/react-native-image-picker with pretty good results thus far
Upvotes: 4