- Home
- /Realtime
- /…
- /iOS
- /AppTheme
AppTheme
Last updated Apr 23, 2026|Copy as Markdown|View as Markdown|Agent setup OverviewAccessMethodsUsage ExamplesAccess default themeApply a custom theme
The application theme singleton that provides pre-configured appearance objects for UI components.
Use AppTheme.shared to access default appearances or call setUp(theme:) to apply a custom theme.
let theme = AppTheme.shared
import RealtimeKitUI
let theme = AppTheme.shared
let titleAppearance = theme.meetingTitleAppearance
let clockAppearance = theme.clockViewAppearance
import RealtimeKitUI
class CustomTheme: AppThemeProtocol {
// Implement required appearance properties
}
let customTheme = CustomTheme()
AppTheme.shared.setUp(theme: customTheme)
PreviousRtkSetupScreenNextDesignLibrary