Skip to content

RtkParticipantCount

Displays the total participant count and opens the participants sidebar when tapped.

Properties

PropertyTypeRequiredDefaultDescription
meetingRealtimeKitClient-The RealtimeKit meeting instance
iconPackIconPackdefaultIconPackCustom icon pack
tRtkI18n-i18n translation function

Usage Examples

Basic Usage

import { RtkParticipantCount } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkParticipantCount meeting={meeting} />;
}

With Properties

import { RtkParticipantCount } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkParticipantCount meeting={meeting} iconPack={customIconPack} />;
}