Skip to content

RtkLiveStreamIndicator

Last updated View as MarkdownAgent setup

Displays a "Live" indicator when a livestream is active. Only visible in livestream mode for off-stage viewers.

Properties

Property Type Required Default Description
meeting RealtimeKitClient - The RealtimeKit meeting instance
iconPack IconPack defaultIconPack Custom icon pack
size 'lg' | 'md' | 'sm' | 'xl' 'sm' Size variant
t RtkI18n useLanguage() i18n translation function

Usage Examples

Basic Usage

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

function MyComponent() {
	return <RtkLiveStreamIndicator meeting={meeting} />;
}

With Properties

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

function MyComponent() {
	return <RtkLiveStreamIndicator meeting={meeting} size="md" />;
}

Was this helpful?