Full polls panel showing all polls with voting and a create poll form for hosts.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | The RealtimeKit meeting instance |
config |
UIConfig |
❌ | defaultConfig |
UI configuration object |
iconPack |
IconPack |
❌ | defaultIconPack |
Custom icon pack |
size |
'lg' | 'md' | 'sm' | 'xl' |
❌ | 'sm' |
Size variant |
t |
RtkI18n |
❌ | - | i18n translation function |
import { RtkPolls } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkPolls meeting={meeting} />;
}import { RtkPolls } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkPolls meeting={meeting} size="md" config={customConfig} />;
}