Pagination controls for navigating between pages of participants in the grid. Shows page numbers and navigation arrows.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | The RealtimeKit meeting instance |
iconPack |
IconPack |
❌ | defaultIconPack |
Custom icon pack |
states |
States |
❌ | - | UI state object |
t |
RtkI18n |
❌ | - | i18n translation function |
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}
/>
);
}