Skip to main content
Version: 0.1.x

Leave or End Meeting - React Native

A participant can choose to leave a meeting without removing all the other participants. This is typically done using the Leave Meeting functionality.

Alternatively, if the participant is the host or the last person remaining in the session, they can choose to End Meeting by removing all other participants, which will end the session for everyone.

leave()

To leave the meeting without removing all the participants you need to call the leave() method which is a part of the useMeeting hook of React SDK.

end()

To end the meeting by removing all the participants you need to call the end() method which is a part of the useMeeting hook of React SDK.

note

These methods can be called only after the meeting is joined successfully.

Example

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

const MeetingView = () => {
//Getting the leave and end method from hook and assigning event callbacks
const { leave, end } = useMeeting({
onMeetingLeft,
onParticipantLeft,
});

const handleLeaveMeeting = () => {
// Leaving Meeting
leave();
};

const handleEndMeeting = () => {
// Ending Meeting
end();
};

return (
<>
<TouchableOpacity
onPress={() => {
handleLeaveMeeting();
}}
>
<Text>Leave Meeting</Text>
</TouchableOpacity>

<TouchableOpacity
onPress={() => {
handleEndMeeting();
}}
>
<Text>End Meeting</Text>
</TouchableOpacity>
</>
);
};
tip

You should call the leave() method on the unmount of your main meeting component so that meeting is left once the view is unmounted.

Events associated with the leave() method.

Following callbacks are received when a participant leaves the meeting.

Events associated with the end() method.

Following callbacks are received when a participant ends the meeting.

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

const MeetingView = () => {
//Event to determine if the meeting has been left
function onMeetingLeft() {
console.log("onMeetingLeft");
}

//Event to determine if some other participant has left
function onParticipantLeft(participant) {
console.log(" onParticipantLeft", participant);
}

//Getting the leave and end method from hook and assigning event callbacks
const { leave, end } = useMeeting({
onMeetingLeft,
onParticipantLeft,
});

return <>...</>;
};

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