RtkClock
Displays elapsed meeting time as a running clock (HH:MM:SS or MM:SS).
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
meeting | RealtimeKitClient | ✅ | - | The RealtimeKit meeting instance |
iconPack | IconPack | ❌ | defaultIconPack | Custom icon pack |
t | RtkI18n | ❌ | - | i18n translation function |
import { RtkClock } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() { return <RtkClock meeting={meeting} />;}import { RtkClock } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() { return <RtkClock meeting={meeting} iconPack={customIconPack} />;}