Skip to content

RtkIdleScreen

Last updated View as MarkdownAgent setup

Loading/idle screen displayed while the meeting is initializing, showing a logo and spinner.

Properties

Property Type Required Default Description
config UIConfig - UI configuration object (used for logo URL)

Usage Examples

Basic Usage

import { RtkIdleScreen } from "@cloudflare/realtimekit-react-native-ui";

function MyComponent() {
	return <RtkIdleScreen config={config} />;
}

With Properties

import {
	RtkIdleScreen,
	defaultConfig,
} from "@cloudflare/realtimekit-react-native-ui";

function MyComponent() {
	return <RtkIdleScreen config={defaultConfig} />;
}

Was this helpful?