質問、投票可能な選択肢、投票数、投票者のアバターを含む、1 件の投票を描画します。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
poll |
Poll |
✅ | - | 表示する Poll オブジェクト |
meeting |
RealtimeKitClient |
✅ | - | RealtimeKit のミーティングインスタンス |
onRtkVotePoll |
any |
❌ | - | 投票時のコールバック(選択肢のインデックスを受け取ります) |
self |
string |
❌ | - | 自分のユーザー ID |
iconPack |
IconPack |
❌ | defaultIconPack |
カスタムアイコンパック |
t |
RtkI18n |
❌ | - | i18n 翻訳関数 |
import { RtkPoll } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkPoll poll={poll} meeting={meeting} />;
}import { RtkPoll } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkPoll
poll={poll}
meeting={meeting}
onRtkVotePoll={(index) => handleVote(index)}
self={selfUserId}
/>
);
}