Skip to content

RtkClock

Displays elapsed meeting time as a running clock (HH:MM:SS or MM:SS).

Properties

PropertyTypeRequiredDefaultDescription
meetingRealtimeKitClient-The RealtimeKit meeting instance
iconPackIconPackdefaultIconPackCustom icon pack
tRtkI18n-i18n translation function

Usage Examples

Basic Usage

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

With Properties

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