Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.29 KB

File metadata and controls

43 lines (33 loc) · 1.29 KB
pcx_content_type reference
title RtkMeetingTitleLabel
description API reference for RtkMeetingTitleLabel component (iOS Library)
products
realtime

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)