Skip to content

RtkRecordingToggle

Last updated View as MarkdownAgent setup

Toggle button to start or stop meeting recording. Only visible for participants with recording permissions who are on stage.

Properties

Property Type Required Default Description
meeting RealtimeKitClient - The RealtimeKit meeting instance
size 'lg' | 'md' | 'sm' | 'xl' - Icon size
variant 'button' | 'horizontal' - Layout variant
iconPack IconPack defaultIconPack Custom icon pack
t RtkI18n - i18n translation function

Usage Examples

Basic Usage

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

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

With Properties

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

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

Was this helpful?