Kyte mobile React Native Camera Adapter
Kyte Mobile react-native-camera adapter
yarn add react-native-vision-camera react-native-reanimated@^2.17.0 && npx pod-install
Follow the reanimated setup, make sure to import the react-native-reanimated at your first line in index.tsx
import 'react-native-reanimated'
``tsx
import { CaptureImage } from '@drivekyte/react-native-camera';
return (
retakeCta="retake"
confirmCta="confirm"
title="Capture Image"
onClose={closeCamera}
onConfirmPhoto={closeCamera}
/>
)
``