Skip to content

RtkButton

A button that follows the RealtimeKit design system.

Properties

PropertyTypeRequiredDefaultDescription
rtk_btn_variantprimary | secondary | danger-Button variant

Methods

MethodParametersDescription
applyDesignTokensdesignTokens: RtkDesignTokensApply custom design tokens for theming
refreshuiTokens: RtkDesignTokensRefresh the button with the provided tokens

Usage Examples

Basic Usage

<com.cloudflare.realtimekit.ui.view.button.RtkButton
android:id="@+id/btn_id"
android:layout_width="200dp"
android:layout_height="48dp"
android:text="Text on Button"
app:rtk_btn_variant="primary" />