Skip to content

RtkParticipant

Last updated View as MarkdownAgent setup

A participant list item card showing avatar, name, audio/video status icons, and host control options (pin, kick, mute, stage management).

Properties

Property Type Required Default Description
participant Peer - The participant to display
meeting RealtimeKitClient - The RealtimeKit meeting instance
iconPack IconPack defaultIconPack Custom icon pack
t RtkI18n - i18n translation function

Usage Examples

Basic Usage

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

function MyComponent() {
	return <RtkParticipant participant={participant} />;
}

With Properties

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

function MyComponent() {
	return (
		<RtkParticipant
			participant={participant}
			meeting={meeting}
			iconPack={customIconPack}
		/>
	);
}

Was this helpful?