Skip to content

RtkGridPaginatorView

Last updated View as MarkdownAgent setup

A component which allows you to change the current page of the active participants grid.

Methods

Method Parameters Description
activate rtkAndroidClient: RealtimeKitClient, uiTokens: RtkDesignTokens Bind the paginator to the meeting state

Usage Examples

Basic Usage

<com.cloudflare.realtimekit.ui.view.RtkGridPaginatorView
    android:id="@+id/rtk_grid_paginator"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

With Methods

val paginatorView = findViewById<RtkGridPaginatorView>(R.id.rtk_grid_paginator)
paginatorView.activate(meeting)

Was this helpful?