UNPKG

expo-camera

Version:

A React component that renders a preview for the device's either front or back camera. Camera's parameters like zoom, auto focus, white balance and flash mode are adjustable. With expo-camera, one can also take photos and record videos that are saved to t

8 lines (5 loc) 273 B
import { requireNativeViewManager } from '@unimodules/core'; import * as React from 'react'; import { NativeProps } from './Camera.types'; const ExponentCamera: React.ComponentType<NativeProps> = requireNativeViewManager('ExponentCamera'); export default ExponentCamera;