グリッド内の参加者ページを移動するためのページネーションコントロールです。ページ番号とナビゲーション矢印を表示します。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | RealtimeKit のミーティングインスタンス |
iconPack |
IconPack |
❌ | defaultIconPack |
カスタムアイコンパック |
states |
States |
❌ | - | UI の状態オブジェクト |
t |
RtkI18n |
❌ | - | i18n 翻訳関数 |
import { RtkGridPagination } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkGridPagination meeting={meeting} />;
}import { RtkGridPagination } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkGridPagination
meeting={meeting}
iconPack={customIconPack}
states={states}
/>
);
}