Skip to content

RtkJoinStage

Last updated View as MarkdownAgent setup

Join stage confirmation dialog with video preview and mic/camera toggles for webinar/livestream participants.

Properties

Property Type Required Default Description
meeting RealtimeKitClient - The RealtimeKit meeting instance
iconPack IconPack defaultIconPack Custom icon pack
states States - UI state object
t RtkI18n - i18n translation function

Usage Examples

Basic Usage

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

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

With Properties

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

function MyComponent() {
	return (
		<RtkJoinStage meeting={meeting} iconPack={customIconPack} states={states} />
	);
}

Was this helpful?