Skip to main content
caution

This page has been deprecated.

We've released a new version of pages with some improvements and smoother experience.

Here is the link of each SDK for this page.

Leave or End Meeting

Whenever participant wishes to end their communication in the meeting, they can simply leave the meeting.

This guide will provide an overview of how to implement leave or end feature in VideoSDK meetings.

  1. Leave - By using leave() function, only a participant will leave/exit the meeting, the rest of the meeting will continue with other participants.
  2. End - By using end() function, meeting will end for each and every participant. So, use this function according to your use cases.

Leave And End Meeting

const onPress = () => {
// Leave Meeting
meeting?.leave();

// Exit Meeting
meeting?.end();
};

Got a Question? Ask us on discord


Was this helpful?