react-native-capture
Version:
Socket Mobile CaptureSDK for React Native
10 lines (7 loc) • 418 B
text/typescript
// src/components/SocketCamNativeView.ios.ts
import { requireNativeComponent } from 'react-native';
// Wraps the native RNSocketCamViewManager (iOS only).
// The view is a SocketCamContainerView that self-embeds the SDK's camera view
// via NSNotification when CaptureSdk sets the socketCamView property.
const SocketCamNativeView = requireNativeComponent<{}>('RNSocketCamView');
export default SocketCamNativeView;