Skip to content

RtkParticipantTile

A widget that displays a participant's video or avatar within a meeting environment. Automatically shows the video feed when available and falls back to the participant's avatar.

Properties

PropertyTypeRequiredDefaultDescription
participantRtkMeetingParticipant-The participant to display (positional parameter)
designTokenRtkDesignTokens?Global design tokensDesign tokens for customization
heightdouble240Height of the tile
widthdouble180Width of the tile

Usage Examples

Basic Usage

Dart
import 'package:realtimekit_ui/realtimekit_ui.dart';
RtkParticipantTile(
participant,
)

With Properties

Dart
import 'package:realtimekit_ui/realtimekit_ui.dart';
RtkParticipantTile(
participant,
designToken: yourDesignToken,
height: 300,
width: 200,
)