Pre-join setup screen with video preview, mic/camera toggles, display name input, camera switch, and join button.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | The RealtimeKit meeting instance |
config |
UIConfig |
❌ | defaultConfig |
UI configuration object |
iconPack |
IconPack |
❌ | defaultIconPack |
Custom icon pack |
size |
'lg' | 'md' | 'sm' | 'xl' |
❌ | 'sm' |
Size variant |
states |
States |
❌ | - | UI state object |
t |
RtkI18n |
❌ | - | i18n translation function |
import { RtkSetupScreen } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkSetupScreen meeting={meeting} />;
}import { RtkSetupScreen } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkSetupScreen
meeting={meeting}
config={customConfig}
size="md"
iconPack={customIconPack}
/>
);
}