Skip to main content
Version: 0.3.x

Join Screen - Prebuilt

After the successful installation of VideoSDK prebuilt, the next step is to integrate VideoSDK prebuilt features with your webApp.

To Communicate with other participant's audio or video call, you will need to join the meeting.

This guide will provide an overview of how to setup join feature in VideoSDK prebuilt.

How it works ?

  • While JoinScreen visible value is set to true, the below screen will display before the meeting start.

Go live with VideoSDK

  • While JoinScreen visible value is set to false, the below screen will display before the meeting start and you have to click any where to start the meeting.

Go live with VideoSDK

Join Screen Attributes

To configure join screen feature, you need to add join screen object in meeting config.

joinScreen object has following attributes:

  • visible: If you want to show join screen before the start of the meeting set it true otherwise false.

  • title: Meeting title.

  • meetingUrl: Meeting join url, where your meeting will be hosted.

index.html
const config = {
// ...
joinScreen: {
visible: true,
title: "Daily scrum",
meetingUrl: "customURL.com",
},
// ...
};

Got a Question? Ask us on discord