Skip to content

RtkHeader

The meeting header bar that renders logo, title, participant count, clock, and other header elements using the declarative UI config system.

Properties

PropertyTypeRequiredDefaultDescription
meetingRealtimeKitClient-The RealtimeKit meeting instance
configUIConfigdefaultConfigUI configuration object
iconPackIconPack-Custom icon pack
statesStates-UI state object
tRtkI18n-i18n translation function

Usage Examples

Basic Usage

import { RtkHeader } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkHeader meeting={meeting} />;
}

With Properties

import { RtkHeader } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkHeader meeting={meeting} config={customConfig} states={states} />;
}