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
14 lines • 625 B
JavaScript
import React from 'react';
import FlexibleGrid from '../../components/displayComponents/FlexibleGrid';
import { getModernColors, resolveIsDarkMode } from '../core/modernTheme';
export const ModernFlexibleGrid = (props) => {
const colors = getModernColors(resolveIsDarkMode(props));
return (<FlexibleGrid {...props} backgroundColor={props.backgroundColor ?? colors.roomSurface} style={[
{
backgroundColor: props.backgroundColor ?? colors.roomSurface,
},
props.style,
]}/>);
};
export default ModernFlexibleGrid;
//# sourceMappingURL=ModernFlexibleGrid.js.map