Go to file
dependabot[bot] 2e6986d838
Bump kotlinx-coroutines-guava from 1.4.2 to 1.4.3-native-mt in /android (#18)
Bumps [kotlinx-coroutines-guava](https://github.com/Kotlin/kotlinx.coroutines) from 1.4.2 to 1.4.3-native-mt.
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/commits)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-04 13:20:43 +01:00
.github Update dependabot.yml 2021-03-04 13:17:44 +01:00
.vscode VSCode settings 2021-02-20 17:13:02 +01:00
android Bump kotlinx-coroutines-guava from 1.4.2 to 1.4.3-native-mt in /android (#18) 2021-03-04 13:20:43 +01:00
docs Update docs: Landing page img refs 2021-03-04 12:06:27 +01:00
example Fix old links 2021-03-04 10:45:50 +01:00
ios Fix wrong variable name for tag 2021-02-25 15:15:35 +01:00
scripts Bootstrap 2021-02-19 16:07:53 +01:00
src Automatically build API documentation (#11) 2021-03-03 12:37:43 +01:00
.eslintrc.js Remove prettier/@typescript-eslint 2021-03-04 10:43:53 +01:00
.gitignore Update .gitignore 2021-03-03 21:24:44 +01:00
.prettierrc.js Finish devDependencies setup 2021-02-19 16:20:19 +01:00
babel.config.js Fix include 2021-02-20 17:09:57 +01:00
CONTRIBUTING.md move md to docs 2021-02-19 21:26:49 +01:00
LICENSE Update LICENSE 2021-02-25 22:48:21 +01:00
package.json Fix old links 2021-03-04 10:45:50 +01:00
react-native-vision-camera.podspec Fix old links 2021-03-04 10:45:50 +01:00
README.md Update README.md 2021-03-04 11:23:24 +01:00
tsconfig.build.json Bootstrap 2021-02-19 16:07:53 +01:00
tsconfig.docs.json Ignore example/ for building docs 2021-03-04 10:38:42 +01:00
tsconfig.json Automatically build API documentation (#11) 2021-03-03 12:37:43 +01:00
yarn.lock Upgrade all packages to latest 2021-03-03 21:56:03 +01:00

Vision Camera



📸 The Camera library that sees the vision.






Documentation

Install

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

Features

  • Photo and Video capture
  • Customizable device (ultra-wide-angle, wide-angle, telephoto and virtual multi-cameras)
  • Customizable FPS
  • JS worklet frame processors powered by JSI and Reanimated (Work in progress: #2)
  • Reanimated zooming
  • HDR & Night modes

See the example app

Example

function App() {
  const devices = useCameraDevices('wide-angle-camera')
  const device = devices.back

  if (device == null) return <LoadingView />
  return (
    <Camera
      style={StyleSheet.absoluteFill}
      device={device}
      isActive={true}
    />
  )
}

🚀 Get started by setting up permissions!