Quick Reference - Start a presentation session:
Available via: SDK | UI Kits
Overview
The Presenter Mode feature allows developers to create a calling service experience in which:- There are one or more users who are presenting their video, audio and/or screen (Maximum 5)
- Viewers who are consumers of that presentation (they cannot send their audio, video or screen streams out)
- The total number of presenters and viewers can go up to 100
- Features such as mute/unmute audio, show/hide camera capture, recording, etc. will be enabled only for the Presenter
- Other call participants act like passive viewers in the call
About this guide
This guide demonstrates how to start a presentation into a React Native application. Before you begin, we strongly recommend you read the calling setup guide. Before starting a call session you have to generate a call token.Start Presentation Session
ThePresentationSettings class allows you to set the various parameters for the Presentation Mode. Use the PresentationSettingsBuilder class to configure it.
Set the User Type with setIsPresenter(true/false) — there are 2 types: Presenter & Participant.
- JavaScript
Listeners
Listeners can be added in two ways: using.setCallEventListener(listeners) in PresenterSettingsBuilder, or using CometChatCalls.addCallEventListener(name, callListener).
- JavaScript
Events
Settings
ThePresentationSettings class customization options:
Best Practices
Best Practices
- Always explicitly set
setIsPresenter(true)for presenters andsetIsPresenter(false)for viewers - Limit presenters to 5 — enforce this in your logic before calling
setIsPresenter(true) - Clean up listeners on component unmount
- Generate call tokens just before use
Troubleshooting
Troubleshooting
- Viewer can send audio/video: Verify
setIsPresenter(false)is set for viewer participants - Presentation UI does not render: Ensure the component is wrapped in a
Viewwithflex: 1or explicit dimensions - Listeners not firing: Check that the listener is registered before the session starts
- Maximum participant limit reached: Presenter Mode supports up to 100 total participants
Next Steps
Call Session
Start and manage standard call sessions with full configuration options
Recording
Record presentation sessions for playback and compliance
Video View Customisation
Customize the main video container and participant tiles
Calls SDK Setup
Install dependencies, configure permissions, and initialize the Calls SDK