Skip to content

RtkPolls

Full polls panel showing all polls with voting and a create poll form for hosts.

Properties

PropertyTypeRequiredDefaultDescription
meetingRealtimeKitClient-The RealtimeKit meeting instance
configUIConfigdefaultConfigUI configuration object
iconPackIconPackdefaultIconPackCustom icon pack
size'lg' | 'md' | 'sm' | 'xl''sm'Size variant
tRtkI18n-i18n translation function

Usage Examples

Basic Usage

import { RtkPolls } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkPolls meeting={meeting} />;
}

With Properties

import { RtkPolls } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkPolls meeting={meeting} size="md" config={customConfig} />;
}