Skip to main content
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:
  1. There are one or more users who are presenting their video, audio and/or screen (Maximum 5)
  2. Viewers who are consumers of that presentation (they cannot send their audio, video or screen streams out)
  3. The total number of presenters and viewers can go up to 100
  4. Features such as mute/unmute audio, show/hide camera capture, recording, etc. will be enabled only for the Presenter
  5. 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

The PresentationSettings 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.

Listeners

Listeners can be added in two ways: using .setCallEventListener(listeners) in PresenterSettingsBuilder, or using CometChatCalls.addCallEventListener(name, callListener).
Always remove call event listeners when the component unmounts using CometChatCalls.removeCallEventListener(listenerId).

Events

Settings

The PresentationSettings class customization options:
  • Always explicitly set setIsPresenter(true) for presenters and setIsPresenter(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
  • 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 View with flex: 1 or 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