Skip to content

RtkSetupScreen

A pre-built setup screen shown before joining a meeting. Allows users to edit their display name and configure media settings.

Properties

PropertyTypeRequiredDefaultDescription
selectedAudioDeviceAudioDevice?-Currently selected audio device (positional parameter)
selectedVideoDeviceVideoDevice?-Currently selected video device (positional parameter)

Usage Examples

Basic Usage

Dart
import 'package:realtimekit_ui/realtimekit_ui.dart';
RtkSetupScreen(
selectedAudioDevice,
selectedVideoDevice,
)

With Properties

Dart
import 'package:realtimekit_ui/realtimekit_ui.dart';
final selectedAudioDevice = meeting.getSelectedAudioDevice();
final selectedVideoDevice = meeting.getSelectedVideoDevice();
RtkSetupScreen(
selectedAudioDevice,
selectedVideoDevice,
)