react-native-camera/examples/basic
Sibelius Seraphini 1d876ef5eb
feat(upgrade): upgrade deps (#2967)
* feat(upgrade): upgrade deps

* feat(key): add missing debug keystore
2020-09-08 14:28:20 -03:00
..
__tests__ fix: remove executable bit from regular files (#2103) [skip release] [skip ci] 2019-02-12 10:46:51 +01:00
android feat(upgrade): upgrade deps (#2967) 2020-09-08 14:28:20 -03:00
ios feat(ios): migrate face detection to mlkit (#2193) 2019-04-11 09:10:19 -03:00
.gitignore docs(rn-camera): add rncamera-example without face detection (#1979) [skip ci] 2018-12-11 12:37:48 +01:00
App.js feat(example): Fix basic example bugs (#2751) 2020-04-05 11:53:51 -03:00
app.json fix: remove executable bit from regular files (#2103) [skip release] [skip ci] 2019-02-12 10:46:51 +01:00
babel.config.js feat(ios): migrate face detection to mlkit (#2193) 2019-04-11 09:10:19 -03:00
index.js fix: remove executable bit from regular files (#2103) [skip release] [skip ci] 2019-02-12 10:46:51 +01:00
metro.config.js feat(example): fix circleci error 2020-03-20 19:29:52 +01:00
package.json feat(upgrade): upgrade deps (#2967) 2020-09-08 14:28:20 -03:00
README.md fix: remove executable bit from regular files (#2103) [skip release] [skip ci] 2019-02-12 10:46:51 +01:00
yarn.lock feat(upgrade): upgrade deps (#2967) 2020-09-08 14:28:20 -03:00

React Native Camera Basic Example

An example project demonstrating the use of react-native-camera.

Features

Shows all different attributes of the camera like front and back cameras, flash modes, WB, etc.

Demonstrates the usage of the face detection feature by drawing polygons around the detected face.

Setup

run yarn install

Contributing

  • Pull Requests are welcome, if you open a pull request we will do our best to get to it in a timely manner
  • Pull Request Reviews and even more welcome! we need help testing, reviewing, and updating open PRs
  • If you are interested in contributing more actively, please contact me (same username on Twitter, Facebook, etc.) Thanks!
  • If you want to help us coding, join Expo slack https://slack.expo.io/, so we can chat over there. (#react-native-camera)

FAQ

Why is react-native-camera not listed as a dependency in package.json?

react-native uses metro for dependency resolution. In order to not recursively install this example into the node_modules of this example we use rn-cli.config.js to resolve react-native-camera. This also allows a quicker iteration when developing (without having to yarn install after every single change in react-native-camera).

Also the Header Search Paths in ios/RNCameraExample.xcodeproj/project.pbxproj are changed to fit the react-native-camera root directory.