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
23 lines • 651 B
JavaScript
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
const Screenboard = () => {
return (<View style={styles.container}>
<Text style={styles.text}>Screenboard is currently unsupported because native screen sharing is unavailable.</Text>
</View>);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#1e293b',
padding: 20
},
text: {
color: '#fff',
fontSize: 16,
textAlign: 'center'
}
});
export default Screenboard;
//# sourceMappingURL=Screenboard.js.map