RtkJoinStage
Join stage confirmation dialog with video preview and mic/camera toggles for webinar/livestream participants.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
meeting | RealtimeKitClient | ✅ | - | The RealtimeKit meeting instance |
iconPack | IconPack | ❌ | defaultIconPack | Custom icon pack |
states | States | ❌ | - | UI state object |
t | RtkI18n | ❌ | - | i18n translation function |
import { RtkJoinStage } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() { return <RtkJoinStage meeting={meeting} />;}import { RtkJoinStage } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() { return ( <RtkJoinStage meeting={meeting} iconPack={customIconPack} states={states} /> );}