Skip to main content
Version: 0.0.x

Screen Share - React Native

Screen sharing in a meeting is the process of sharing your device screen with other participants in the meeting. It allows everyone in the meeting to see exactly what you are seeing on your screen, which can be helpful for presentations, demonstrations, or collaborations.

enableScreenShare()

  • By using enableScreenShare() function of useMeeting hook, local participant can share his/her desktop screen to other participants.

  • You can pass customised screenshare track in enableScreenShare() by using Custom Screen Share Track.

  • Screen Share stream of the participant can be accessed from the screenShareStream property of useParticipant hook.

disableScreenShare()

  • By using disableScreenShare() function of useMeeting hook, local participant can stop sharing his/her desktop screen to other participants.

toggleScreenShare()

  • By using toggleScreenShare() function of useMeeting hook, local participant can start or stop sharing his desktop screen to other participants based on the current state of the screen sharing.

  • You can pass customised screenshare track in toggleScreenShare() by using Custom Screen Share Track.

  • Screen Share stream of the participant can be accessed from the screenShareStream property of useParticipant hook.

import { useMeeting } from "@videosdk.live/react-native-sdk";
import { TouchableOpacity, Text } from "react-native";

const MeetingView = () => {
//Getting the screen-share methods from hook
const { enableScreenShare, disableScreenShare, toggleScreenShare } =
useMeeting();

const handleEnableScreenShare = () => {
// Enabling screen share
enableScreenShare();
};

const handleDisableScreenShare = () => {
// Disabling screen share
disableScreenShare();
};

const handleToggleScreenShare = () => {
// Toggling screen share
toggleScreenShare();
};

return (
<>
<TouchableOpacity
onPress={() => {
handleEnableScreenShare();
}}
>
<Text>Enable Screen Share</Text>
</TouchableOpacity>

<TouchableOpacity
onPress={() => {
handleDisableScreenShare();
}}
>
<Text>Disable Screen Share</Text>
</TouchableOpacity>

<TouchableOpacity
onPress={() => {
handleToggleScreenShare();
}}
>
<Text>Toggle Screen Share</Text>
</TouchableOpacity>
</>
);
};

iOS Setup

note

For React Native iOS Screen Share feature, you need to follow this guide React Native iOS Screen Share

Rendering Screen Share Stream

  1. To render the screenshare, you will need the participantId who is presenting the screen, which can be found from the presenterId property of useMeeting hook.
import {
useParticipant,
RTCView,
MediaStream,
useMeeting,
} from "@videosdk.live/react-native-sdk";

const MeetingView = () => {
//
const { presenterId } = useMeeting();

return <>{presenterId && <PresenterView presenterId={presenterId} />}</>;
};

const PresenterView = ({ presenterId }) => {
return <Text>PresenterView</Text>;
};
  1. Now that the we have presenterId, we will get the screenShareStream from the useParticipant hook and play it in the RTCView component.
const PresenterView = ({ presenterId }) => {
const { screenShareStream, screenShareOn } = useParticipant(presenterId);

return (
<>
// playing the media stream in the RTCView
{screenShareOn && screenShareStream ? (
<RTCView
streamURL={new MediaStream([screenShareStream.track]).toURL()}
objectFit={"contain"}
style={{
flex: 1,
}}
/>
) : null}
</>
);
};

Events associated with enableScreenShare

Events associated with disableScreenShare

Events associated with toggleScreenShare

  • Every Participant will receive a callback on onStreamEnabled() of the useParticipant() hook with Stream object if the screen share broadcasting was started.

  • Every Participant will receive a callback on onStreamDisabled() of the useParticipant() hook with Stream object if the screen share broadcasting was stopped.

  • Every Participant will receive onPresenterChanged() callback of the useMeeting hook with the participantId as presenterId who started the screen share or null if the screen share was turned off.

import { useParticipant, useMeeting } from "@videosdk.live/react-native-sdk";

const MeetingView = () => {
//Callback for when the presenter changes
function onPresenterChanged(presenterId) {
if(presenterId){
console.log(presenterId, "started screen share");
}else{
console.log("someone stopped screen share");
}
}

const { participants } = useMeeting({
onPresenterChanged,
...
});

return <>...</>
}

const ParticipantView = (participantId) => {
//Callback for when the participant starts a stream
function onStreamEnabled(stream) {
if(stream.kind === 'share'){
console.log("Share Stream On: onStreamEnabled", stream);
}
}

//Callback for when the participant stops a stream
function onStreamDisabled(stream) {
if(stream.kind === 'share'){
console.log("Share Stream Off: onStreamDisabled", stream);
}
}

const {
displayName
...
} = useParticipant(participantId,{
onStreamEnabled,
onStreamDisabled
...
});
return <> Participant View </>;
}

API Reference

The API references for all the methods and events utilised in this guide are provided below.

Got a Question? Ask us on discord