RtkParticipants
Full participants list panel showing on-stage participants, viewers, waitlisted users, and stage request management with accept/reject all functionality.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
meeting | RealtimeKitClient | ✅ | - | The RealtimeKit meeting instance |
config | UIConfig | ❌ | defaultConfig | UI configuration object |
iconPack | IconPack | ❌ | defaultIconPack | Custom icon pack |
states | States | ❌ | - | UI state object |
size | 'lg' | 'md' | 'sm' | 'xl' | ❌ | 'sm' | Size variant |
t | RtkI18n | ❌ | - | i18n translation function |
import { RtkParticipants } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() { return <RtkParticipants meeting={meeting} />;}import { RtkParticipants } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() { return <RtkParticipants meeting={meeting} size="md" config={customConfig} />;}