Skip to content

RtkMeetingTitleLabel

Last updated View as MarkdownAgent setup

A label that displays the meeting title from the meeting metadata.

Initializer parameters

Parameter Type Required Default Description
meeting RealtimeKitClient - The RealtimeKit client instance for the active meeting
appearance RtkTextAppearance AppTheme.shared.meetingTitleAppearance Text appearance configuration for font and color

Usage Examples

Basic Usage

import RealtimeKitUI

let titleLabel = RtkMeetingTitleLabel(meeting: rtkClient)
view.addSubview(titleLabel)

With custom appearance

import RealtimeKitUI

let appearance = RtkTextAppearance(
    font: UIFont.systemFont(ofSize: 18, weight: .bold),
    textColor: .white
)
let titleLabel = RtkMeetingTitleLabel(
    meeting: rtkClient,
    appearance: appearance
)
view.addSubview(titleLabel)

Was this helpful?