UNPKG

mediasfu-reactnative-expo

Version:

mediasfu-reactnative-expo – Expo-managed React Native WebRTC SDK for video conferencing, webinars, live streaming, broadcast, screen sharing, whiteboard, chat, recording, live subtitles, translation, and AI agent rooms on iOS, Android, and web. Prebuilt r

21 lines (20 loc) 673 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; interface ScreenboardModalProps { isScreenboardModalVisible?: boolean; onScreenboardClose?: () => void; backgroundColor?: string; style?: StyleProp<ViewStyle>; parameters?: any; isDarkMode?: boolean; position?: 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight' | 'center'; renderContainer?: (options: { defaultContainer: JSX.Element; dimensions: { width: number; height: number; }; }) => React.ReactNode; } declare const ScreenboardModal: React.FC<ScreenboardModalProps>; export default ScreenboardModal;