A blinking recording indicator displayed when the meeting is being recorded. Shows a red dot with configurable text and image.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
meeting |
RealtimeKitClient |
✅ | - | The RealtimeKit client instance for the active meeting |
title |
String |
❌ | "Rec" |
Text label displayed next to the recording indicator |
image |
RtkImage? |
❌ | nil |
Custom image for the recording indicator |
appearance |
RtkRecordingViewAppearance |
❌ | - | Appearance configuration for the recording indicator |
| Method | Return Type | Description |
|---|---|---|
blinking(start: Bool) |
Void |
Starts or stops the blinking animation on the recording indicator |
import RealtimeKitUI
let recordingView = RtkRecordingView(meeting: rtkClient)
view.addSubview(recordingView)import RealtimeKitUI
let recordingView = RtkRecordingView(
meeting: rtkClient,
title: "Recording"
)
view.addSubview(recordingView)