| pcx_content_type |
reference |
| title |
RtkMeetingTitleLabel |
| description |
API reference for RtkMeetingTitleLabel component (iOS Library) |
| products |
|
A label that displays the meeting title from the meeting metadata.
| 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 |
import RealtimeKitUI
let titleLabel = RtkMeetingTitleLabel(meeting: rtkClient)
view.addSubview(titleLabel)
import RealtimeKitUI
let appearance = RtkTextAppearance(
font: UIFont.systemFont(ofSize: 18, weight: .bold),
textColor: .white
)
let titleLabel = RtkMeetingTitleLabel(
meeting: rtkClient,
appearance: appearance
)
view.addSubview(titleLabel)