A waiting participant card with accept/reject buttons for waitlist and stage request management.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
participant |
Peer |
✅ | - | The waiting participant |
meeting |
RealtimeKitClient |
❌ | - | The RealtimeKit meeting instance |
iconPack |
IconPack |
❌ | defaultIconPack |
Custom icon pack |
t |
RtkI18n |
❌ | - | i18n translation function |
import { RtkParticipantWaiting } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkParticipantWaiting participant={waitingParticipant} />;
}import { RtkParticipantWaiting } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkParticipantWaiting
participant={waitingParticipant}
meeting={meeting}
iconPack={customIconPack}
/>
);
}