Loading/idle screen displayed while the meeting is initializing, showing a logo and spinner.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
config |
UIConfig |
✅ | - | UI configuration object (used for logo URL) |
import { RtkIdleScreen } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkIdleScreen config={config} />;
}import {
RtkIdleScreen,
defaultConfig,
} from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkIdleScreen config={defaultConfig} />;
}